How to fix Unknown device in windows 7

Hi
I have just install windws 7 pro on HP Envy dv6-7200SA Notebook PC
When I open Unknown device Properties, I see following in details
For
Other devices
       - Unknown device
                 ACPI\HPQ0004
                *HPQ0004
How do I fix it.
Please can you help me.
thanks
Ish
This question was solved.
View Solution.

Hi,
The hardware id is for HP 3D DriveGuard - the driver you require is on the following link,
http://ftp.hp.com/pub/softpaq/sp64001-64500/sp64144.exe
When the installation has completed, restart the notebook.
Regards,
DP-K
****Click the White thumb to say thanks****
****Please mark Accept As Solution if it solves your problem****
****I don't work for HP****
Microsoft MVP - Windows Experience

Similar Messages

  • How to fix "Unknown Device"?

    this showed up on my phone today and the phone is no longer working!!
    Can anyone help me with this?

    when I enter my password, thats what comes up on the screen and it doesnt let me do anything else.  I tried to restore it through my itune, it keep running into an error and no matter what I did now its completely out of service.  I've had so many problem this year with my phone and pretty much ready to say goodby to Apple...I've been a great fan of their product but very very disappointed recently and probably soon to switch to something else. Very frustrated with them.

  • How i fix the problem on windows 7  itunes could not connect to the iphone because an invalid response was received from the device

    How i fix the problem on windows 7  itunes could not connect to the iphone because an invalid response was received from the device

    take a look at https://discussions.apple.com/message/24243668#24243668.  i had this problem and that solved it for me.

  • How to fixs unknown error 1611

    how to fixs unknown error 1611

    Error 1611
    This error typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, this error may be a hardware issue. If the errors persist on another computer, the device may need service.
    The "device may need service" means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • How to Fix my Error in windows 8.1 64 bit

    Hi, I have many errors at my Asus A46CB core i5 like error System Thread not handled, error equal or less
    and error power driver state failure. my laptop will restarting and run normal after that.
    how to fix my laptop? my OS is windows 8.1 enterprise RTM 64 bit.
    please help me because i'm very confuse and crazy with this error. 
    i'm very thankfull if there's someone to help my problem.

    Hi
    Sorry for the late respond
    I check the dump file, try to update your graphic card driver and others driver if haven't update yet
    http://support.asus.com/download.aspx?SLanguage=en&p=3&s=431&m=A46CB&os=&hashedid=n%2fa
    You can also learn how to check dump file using
    this or this
    Semoga berhasil

  • Figuring out how to access a device using Windows.Devices.HumanInterfaceDevice?

    Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
    http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
    After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
    if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
    Public Class VirtualMouseDeviceOpen
    Class Enumeration
    ' Enumerate HID devices
    Public Async Function EnumerateHidDevices() As Task
    Dim vendorId As UInt32 = &HBEEF
    Dim productId As UInt32 = &HFEED
    Dim usagePage As UInt32 = &HFF
    Dim usageId As UInt32 = &H1
    ' Create a selector that gets a HID device using VID/PID and a
    ' VendorDefined usage
    Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
    ' Enumerate devices using the selector
    Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
    Dim count As Integer = devices.GetResults.Count
    If count > 0 Then
    ' Open the target HID device
    ' At this point the device is available to communicate with
    ' So we can send/receive HID reports from it or
    ' query it for control descriptions
    Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
    Await Vendor.ReadWriteToHidDevice(device)
    Else
    ' There were no HID devices that met the selector criteria
    MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
    End If
    End Function
    Class Vendor
    Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
    If device IsNot Nothing Then
    ' construct a HID output report to send to the device
    Dim outReport As HidOutputReport = device.CreateOutputReport()
    ' Initialize the data buffer and fill it in
    Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
    Dim dataWriter As New DataWriter()
    dataWriter.WriteBytes(buffer)
    outReport.Data = dataWriter.DetachBuffer()
    ' Send the output report asynchronously
    Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
    ' Sent output report successfully
    ' Now lets try read an input report
    Dim inReport As HidInputReport = device.GetInputReportAsync()
    If inReport IsNot Nothing Then
    Dim id As UInt16 = inReport.Id
    Dim bytes = New Byte(3) {}
    Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
    dataReader__1.ReadBytes(bytes)
    Else
    MsgBox("Invalid input report received")
    End If
    Else
    MsgBox("device is NULL")
    End If
    End Function
    End Class
    End Class
    Here's my report descriptor to avoid scrimmaging through everything trying to find it:
    HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
    0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0xA1,0x01, // COLLECTION (Application)
    0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x15,0x00, // LOGICAL_MINIMUM(0)
    0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0xB1,0x00, // FEATURE (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x81,0x00, // INPUT (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x91,0x00, // OUTPUT (Data,Ary,Abs)
    0xC0, // END_COLLECTION
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x02, // USAGE (Mouse)
    0xa1, 0x01, // COLLECTION (Application)
    0x85, 0x02, // REPORT_ID (2)
    0x09, 0x01, // USAGE (Pointer)
    0xa1, 0x00, // COLLECTION (Physical)
    0x05, 0x09, // USAGE_PAGE (Button)
    0x19, 0x01, // USAGE_MINIMUM (Button 1)
    0x29, 0x03, // USAGE_MAXIMUM (Button 3)
    0x15, 0x00, // LOGICAL_MINIMUM (0)
    0x25, 0x01, // LOGICAL_MAXIMUM (1)
    0x95, 0x03, // REPORT_COUNT (3)
    0x75, 0x01, // REPORT_SIZE (1)
    0x81, 0x02, // INPUT (Data,Var,Abs)
    0x95, 0x01, // REPORT_COUNT (1)
    0x75, 0x05, // REPORT_SIZE (5)
    0x81, 0x03, // INPUT (Cnst,Var,Abs)
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x30, // USAGE (X)
    0x09, 0x31, // USAGE (Y)
    0x15, 0x81, // LOGICAL_MINIMUM (-127)
    0x25, 0x7f, // LOGICAL_MAXIMUM (127)
    0x75, 0x08, // REPORT_SIZE (8)
    0x95, 0x02, // REPORT_COUNT (2)
    0x81, 0x06, // INPUT (Data,Var,Rel)
    0xc0, // END_COLLECTION
    0xc0 // END_COLLECTION
    My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
    Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us

    Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
    http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
    After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
    if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
    Public Class VirtualMouseDeviceOpen
    Class Enumeration
    ' Enumerate HID devices
    Public Async Function EnumerateHidDevices() As Task
    Dim vendorId As UInt32 = &HBEEF
    Dim productId As UInt32 = &HFEED
    Dim usagePage As UInt32 = &HFF
    Dim usageId As UInt32 = &H1
    ' Create a selector that gets a HID device using VID/PID and a
    ' VendorDefined usage
    Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
    ' Enumerate devices using the selector
    Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
    Dim count As Integer = devices.GetResults.Count
    If count > 0 Then
    ' Open the target HID device
    ' At this point the device is available to communicate with
    ' So we can send/receive HID reports from it or
    ' query it for control descriptions
    Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
    Await Vendor.ReadWriteToHidDevice(device)
    Else
    ' There were no HID devices that met the selector criteria
    MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
    End If
    End Function
    Class Vendor
    Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
    If device IsNot Nothing Then
    ' construct a HID output report to send to the device
    Dim outReport As HidOutputReport = device.CreateOutputReport()
    ' Initialize the data buffer and fill it in
    Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
    Dim dataWriter As New DataWriter()
    dataWriter.WriteBytes(buffer)
    outReport.Data = dataWriter.DetachBuffer()
    ' Send the output report asynchronously
    Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
    ' Sent output report successfully
    ' Now lets try read an input report
    Dim inReport As HidInputReport = device.GetInputReportAsync()
    If inReport IsNot Nothing Then
    Dim id As UInt16 = inReport.Id
    Dim bytes = New Byte(3) {}
    Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
    dataReader__1.ReadBytes(bytes)
    Else
    MsgBox("Invalid input report received")
    End If
    Else
    MsgBox("device is NULL")
    End If
    End Function
    End Class
    End Class
    Here's my report descriptor to avoid scrimmaging through everything trying to find it:
    HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
    0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0xA1,0x01, // COLLECTION (Application)
    0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x15,0x00, // LOGICAL_MINIMUM(0)
    0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0xB1,0x00, // FEATURE (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x81,0x00, // INPUT (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x91,0x00, // OUTPUT (Data,Ary,Abs)
    0xC0, // END_COLLECTION
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x02, // USAGE (Mouse)
    0xa1, 0x01, // COLLECTION (Application)
    0x85, 0x02, // REPORT_ID (2)
    0x09, 0x01, // USAGE (Pointer)
    0xa1, 0x00, // COLLECTION (Physical)
    0x05, 0x09, // USAGE_PAGE (Button)
    0x19, 0x01, // USAGE_MINIMUM (Button 1)
    0x29, 0x03, // USAGE_MAXIMUM (Button 3)
    0x15, 0x00, // LOGICAL_MINIMUM (0)
    0x25, 0x01, // LOGICAL_MAXIMUM (1)
    0x95, 0x03, // REPORT_COUNT (3)
    0x75, 0x01, // REPORT_SIZE (1)
    0x81, 0x02, // INPUT (Data,Var,Abs)
    0x95, 0x01, // REPORT_COUNT (1)
    0x75, 0x05, // REPORT_SIZE (5)
    0x81, 0x03, // INPUT (Cnst,Var,Abs)
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x30, // USAGE (X)
    0x09, 0x31, // USAGE (Y)
    0x15, 0x81, // LOGICAL_MINIMUM (-127)
    0x25, 0x7f, // LOGICAL_MAXIMUM (127)
    0x75, 0x08, // REPORT_SIZE (8)
    0x95, 0x02, // REPORT_COUNT (2)
    0x81, 0x06, // INPUT (Data,Var,Rel)
    0xc0, // END_COLLECTION
    0xc0 // END_COLLECTION
    My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
    Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us
    I forgot anyone wanting a picture of what the device hierarchy looks like in control panel here it is (HID compliant vendor device is the first one in the report descriptor above I want to access and then the mouse device): 
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us

  • Hp envy 4-1101ss webcam is not working, it appear as unknown device in windows 8

    Hi, 
    I have a new HP envy 4-1101 ss laptop with windows 8, it came with Truevision HD webcam and it works the first days, suddenly one day it stopped work and now I only have an unknow device in my device manager.
    I read several hours forums and help but I didnt find the answer.
    I updated all my drivers no solution
    I uninstalled all the software, installed it again from hp web page and no solution
    I updated youcam and appeared the web cam but again suddenly it disappear again.
    I dont know what to do, I need use my cam!!
    Thanks for advance!!

    Hi @LynnFlores ,
    Thank you for visiting the HP Support Forums and Welcome. Thank you so much for all the steps you have taken to resolve. Very helpful. I have looked into your issue about your HP Pavilion TouchSmart 14-b164tu Sleekbook and issues with the Touchscreen after an update with Windows 8.1. Here is a document on how to troubleshoot this Touchscreen with Windows 8.1.
    Please start  at the top and work your way down. As they do seem silly but we need to know if something does not finish correctly.
    Please note remove any and all USB devices. Disconnect all non-essential devices, as these could cause some issues.
    Listed on the page shows you about a Touchscreen driver that is available. If you go into the Device manager and look under Human Interface Devices. Do you see the driver listed there?
    If no, do you see something listed under other devices?
    If touch functionality still does not appear to be working correctly, follow the steps listed in the document to calibrate the screen.
    I hope something here helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • G555. Need drivers for SM Bus and another Unknown device for Windows XP.

    I try to install Windows XP on my G555. I got all other drivers, but cannot find drivers for SM Bus and an Unknown device. And what's this device?
    The second problem is that after I installed all the drivers, the card reader disappeared. It was there after I installed Windows XP, before I install drivers.
    Thanks a lot.
    A Simpleguy
    Solved!
    Go to Solution.

    Hi Simpleguy,
    Welcome to the forum!
    In thinkpads, it's usually intel chipset driver. For AMD based G555, I wouldn't be surprised if this is the driver you need:- http://consumersupport.lenovo.com/us/en/DriversDownloads/drivers_show_2476.html
    As for other unknown device, find it's PCI ID with any other known information and paste here.
    Hope it helps.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • Several Unknown Devices after Windows 7 Home Premium Reinstall

    After losing all my data trying to encrypt my hard drive I reinstalled windows from my hard drive using HP's settings in the boot menu and got some weird results. One is that my C drive now only only has 65 gb of space, so I created a new partition with the remaining 215 gb on my hard drive. Additionally, my screen resolution has only 2 options, leaving my desktop looking strange. The worst of these problems is that several of my hardware items are showing up as unknown in addition to my wireless internet not working. Would it be better for me to reinstall again or try and find the drivers?
    Here are the Unknown devices on my computer listed under other devices with the hardware IDs:
    Base System Device:
    PCI\VEN_197B&DEV_2392&SUBSYS_167C103C&REV_30
    PCI\VEN_197B&DEV_2392&SUBSYS_167C103C
    PCI\VEN_197B&DEV_2392&CC_088000
    PCI\VEN_197B&DEV_2392&CC_0880
    Base System Device:
    PCI\VEN_197B&DEV_2393&SUBSYS_167C103C&REV_30
    PCI\VEN_197B&DEV_2393&SUBSYS_167C103C
    PCI\VEN_197B&DEV_2393&CC_088000
    PCI\VEN_197B&DEV_2393&CC_0880
    Network Controller:
    PCI\VEN_168C&DEV_002B&SUBSYS_1461103C&REV_01
    PCI\VEN_168C&DEV_002B&SUBSYS_1461103C
    PCI\VEN_168C&DEV_002B&CC_028000
    PCI\VEN_168C&DEV_002B&CC_0280
    PCI Simple Communications Controller:
    PCI\VEN_8086&DEV_1C3A&SUBSYS_167C103C&REV_04
    PCI\VEN_8086&DEV_1C3A&SUBSYS_167C103C
    PCI\VEN_8086&DEV_1C3A&CC_078000
    PCI\VEN_8086&DEV_1C3A&CC_0780
    Unknown Device:
    ACPI\HPQ0004
    *HPQ0004
    Unknown Device:
    USB\VID_138A&PID_003C&REV_0086
    USB\VID_138A&PID_003C

    Hi:
    Below are the links to the drivers you need...
    Base System Device x 2:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?s​p4ts.oid=5060881&swItemId=ob_116003_1&swEnvOid=405​...
    Network Controller:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?s​p4ts.oid=5060881&swItemId=ob_108905_1&swEnvOid=405​...
    PCI Simple Communications Controller:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?s​p4ts.oid=5060881&swItemId=ob_102185_1&swEnvOid=405​...
    Unknown Device # 1:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?s​p4ts.oid=5060881&swItemId=ob_125640_1&swEnvOid=405​...
    Unknown Device # 2:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?s​p4ts.oid=5060881&swItemId=ob_112146_1&swEnvOid=405​...

  • Satellite U200-124 - Unknown devices with Windows XP SP2

    I downloaded Toshiba U200 drivers for Windows XP from this site, install Windows, install all drivers.
    Well.
    But i have 2 unrecognized devices in device manager.
    1. NIC 1394. Device Code V1394\NIC1394\92423A3900
    2. PCI Device. Device Code PCI\VEN_104C&DEV_803C&SUSBSYS_00011179&REV_00\4&6B 16D5B&0&5BF0
    Modem & FireWire are not working.
    What can I do?

    As Ivan said the drivers are not installed correctly and therefore the unknown devices appear in the device manager.
    The installation instruction shows the right installation order. This order is necessary and important to get all devices working!!!
    Please visit the Toshiba European driver page, choose the right series and download and install the right and compatible drivers like mentioned in the txt. file

  • Unknown devices on Windows 8.1 on HP ENVY TouchSmart 15-j078ca

    Hi, my HP ENVY TouchSmart 15-j078ca is showing 5 device errors under other devices.  I will copy the hardware id for the 5 devices and if someone could tell me where I can download the device drivers for these 5 devices that would be greatly appreciated. 
    Device 1: PCI Simple Communications Controller
    Hardware ID: 
    PCI\VEN_8086&DEV_8C3A&SUBSYS_1963103C&REV_04
    PCI\VEN_8086&DEV_8C3A&SUBSYS_1963103C
    PCI\VEN_8086&DEV_8C3A&CC_078000
    PCI\VEN_8086&DEV_8C3A&CC_0780
    Device 2: SM Bus Controller
    Hardware ID:
    PCI\VEN_8086&DEV_8C22&SUBSYS_1963103C&REV_05
    PCI\VEN_8086&DEV_8C22&SUBSYS_1963103C
    PCI\VEN_8086&DEV_8C22&CC_0C0500
    PCI\VEN_8086&DEV_8C22&CC_0C05
    Device 3: Unknown Device
    Hardware ID:
    ACPI\VEN_HPQ&DEV_6001
    ACPI\HPQ6001
    *HPQ6001
    Device 4: Unknown Device
    Hardware ID:
    ACPI\VEN_HPQ&DEV_6007
    ACPI\HPQ6007
    *HPQ6007
    Device 5: Unknown Device
    Hardware ID:
    USB\VID_138A&PID_0050&REV_0060
    USB\VID_138A&PID_0050

    Hi:
    None of the driver pages seem to be working for me.
    Below are the links to the drivers you need...I got them from a business notebook which has the same hardware as yours.
    PCI Simple Communications Controller:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=5405166&swItemId=ob_146774_1&swEnvOid=415...
    SM Bus Controller:  Install this driver first and reboot.
    http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=5405166&swItemId=ob_123677_1&swEnvOid=415...
    ACPI\VEN_HPQ&DEV_6001:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=5405166&swItemId=ob_124774_1&swEnvOid=415...
    ACPI\VEN_HPQ&DEV_6007:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=5405166&swItemId=ob_127112_1&swEnvOid=415...
    USB\VID_138A&PID_0050&REV_0060:
    http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=5405166&swItemId=ob_134806_1&swEnvOid=415...

  • Unknown Device in Windows XP

    Hi Community,
    on my new ThinkStation S10 is WinXP installed. Everything, except one, works fine.
    Opening the System -> Hardware -> Device Manager an unknown Device appears:
    Intel(R) ICH9R LPC Interface Controller 2916 
    The ChipSet Drivers from the Support CD are installed, but the unkown Device doesn't disappear.
    Can anybody help me with this problem?
    Hajo 

    radarsync ssolution did not work for me.
    I solved problem by loading the Broadcom TPM Driver
    http://www-307.ibm.com/pc/support/site.wss/documen​t.do?sitestyle=lenovo&lndocid=MIGR-66306

  • 'Unknown Device' in Windows

    I am out of ideas. When plug my Zen Nano into my laptop by itself it is recognised, but as soon as i attach another usb devise (ie. an external hard dri've where i store my music) it comes up as an 'unknown device' in device manager. I have reformatted my computer, downloaded the lastest drivers and still no luck - any suggestions?

    I reckon the additional device is drawing too much current from the USB port and the player is losing out.
    The USB ports are normally in pairs - try keeping the 2 devices attached to ports in different pairs.
    PB

  • Cant figure out how to fix my labtop, Acer Windows 8

    Hello,
    Something was uninstalled on my labtop (acer, windows 8), it was something that had to do with office. So now when I try to open any files made in word, excel, powerpoint, ect. They wont open.
    This is what I have tried and gotten no luck:
    1) I tried reinstalling Office Mircrosoft Professional Plus 2013 (This is want I installed when I first got the laptop). When I put in the disk it asks me if I want to run it, when I click on YES, another message pops up saying: Something went wrong,
    sorry we ran into a problem, try going online for additional help. (Which hasn't been helpful).
    2) I tried doing a System Restore, but it ran through the restore and didn't change anything. I tried doing it again, but it now wont even let me do a restore. So I tried the Advance System Recovery, but it wont run also.
    3) I then went into the Run System File Checker tool to troubleshoot the issue. A list of all the programs (expect for office) popped up and the only problem it
    came up with was that the Blue Tooth Audio Device has a driver problem and needs to be reinstalled. But I don't know how to do that. And I'm not sure what I'm even looking for in the list of programs for the troubleshooting.
    Also, other issues I'm having is that its telling me I cant change things unless I'm the admin, but I am and I don't have any other user accounts set up. It also tells me I have things open in other accounts and so I cant make
    changes to whatever it is at the moment I'm trying to change. I've been trying to change a few things not know really what I'm doing.
    Any advice or steps to take to figure out how to get my labtop working like normal?
    If the issue still exists, run System File Checker tool to troubleshoot the issue:
    1.    
    Insert the Windows 7 installation DVD into the DVD-ROM; Click Exit if the auto-menu pops up.
    2.    
    Open an elevated command prompt. To do this, click Start, click All Programs, click Accessories, right-click Command Prompt, and then click Run as administrator.
    If you are prompted for an administrator password or for a confirmation, type the password, or click Allow. 
    3.    
    At the command prompt, type the following command, and then press ENTER

    Do you mean in your from field or the signature field?
    where does it show up...? it wouldn't be on the iPhone as that doesn't show a from field. Check the account details in MM open it up go to settings and check you typed it in right simple as that if it's on someone elses hardware when they recieve an email from you then they need to fix your name in their contacts.

  • What is, how to fix, stop, small popup window from 'plugin-container.exe' with 3 digit number that won't stop re-appearing???

    I get very small windows popping up on the screen on top of anything else I'm doing regardless of what apps I'm running or not running. If I R-click on the icon in the task bar, it's identified as "plugin-container.exe"
    The window doesn't say why it's there, but only displays a 3 digit number (for example the on on the screen now says 587) and allows only the usual X to close, or an 'OK' button to close. But a short time later it pops up again.
    I'm running Windows 7 64bit MS Security Essentials and Firefox, though it will pop up even if I just booted and haven't started Firefox yet.
    It's really (really really) annoying. How can I fix it or disable it or whatever it takes to make it STOP.
    Perhaps if I had some idea what it was I could attack it that way, but I haven't a clue. BTW, I've cleaned the registry, and done full scan's for virus and turned up nada.
    Thanks.
    D.

    As per the web site:
    There will be no update to Waterfox 25.0 as a bug causes Adobe Flash to crash on 64-Bit Windows 7 systems. Bug here. Although Firefox 25.0.1 is now available and we could build it, there would be no point of releasing a new version of Waterfox for only two weeks.
    I mostly only use Waterfox and had no problem in the past. I suspect a flash problem may be at the root of my problem however.
    As stated, I've performed (full) virus scans with MS Security Essentials. Also with Housecall, and also with HiJackThis. No problems detected.
    Screen shot of popup window attached.

Maybe you are looking for