How to install external microphone on windows 8.1 hp envy 17 17-j010ep

how to install external microphone on windows 8.1 hp envy 17 17-j010ep
the problem is that on the device manager sounds
it shows the external microphone but i cannot activate it, when i do activate it stays deactivated with a down arrow red

Hi Apedrodinis,
I understand you are having issues with the microphone using Windows 8.1 on your HP Envy 17 17-j010ep. Here is a generic document on resolving microphone and line-in problems Windows 8.
http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c03421813&lc=en&product=5397916&tmp...
Hope it 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!

Similar Messages

  • External Microphone in Windows on MBP

    Hi guys,
    I see this problem has been posted on the form a couple of years back but don't seem can find a solution. I'm just wondering if this has been sorted now.
    I have a MBP 2011 mid model. It recognise the iphone microphone when it is under OS. However, when it is in Win 7, it seems only picking up sound by the internal microphone. It was fine using the internal microphone until the machine get heated and the cooling fan gets too noisy and the microphone picks up all the noise since it is located just above the fan.
    I had to use windows as the particular software I'm using doesn't have a mac version. I tried to use virtual windows under OS but it gets so slow I could hardly do anything under it.
    The most up-to-date boot camp drivers are correctly installed for Win 7.
    Any one have this sorted? If I can get my MBP pick up an external microphone in Windows (doesn't matter which version)?
    With many thanks

    I visited the Louisville, KY Apple store today and discussed this question with Lonnie, a lead creative there.  He says he is familiar with Fusion and that what Doc wants to do is no problem.  Naturally, it shouldn't be, but ... like Doc A, after 30 years+ working with PCs, things are often not what they should be.
    Doc - did you try this, and did it work?
    Has anyone else out there tried this with a Retina MBP with at least 8gb of RAM and Fusion running at least 2 different VMs, each pinned to a different external monitor (with OSX on the Retina in the middle)?
    If you did, was it with straight Thunderbolt monitors, or did you use older monitors and adapters?
    BONUS POINTS: Was one of your VMs some version of Linux, by any chance?
    Do you have ML OSX or some older version?
    Did it work out of the box, or with issues that you had to get help on?
    Your answers are much appreciated!

  • How to install SOA 10g on Windows 7 64-bit platform?

    Hi Friends
    How to install SOA 10g on Windows 7 64-bit platform ?
    I've downloaded the 64-bit version downloadable from OTN and able to run the irca.bat on DB 10.2.0.3 however the SOA Installer fails at BPEL Config Assistant step with errors :
    deploy-applications:
    Deploying Oracle BPEL Process Manager ...
    Copying 1 file to C:\SOA134\bpel\system\services\lib
    Copying 1 file to C:\SOA134\bpel\system\services\lib
    Copying 1 file to C:\SOA134\bpel\system\services\lib
    Updating jar: C:\SOA134\bpel\system\services\lib\orabpel.ear
    Running batch script by:
    java admin_client.jar deployer:oc4j:opmn://<domain name>:6003/oc4j_soa -script C:\SOA134\bpel\system\services\install\ant-tasks/bpel_deployapps.txt
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.

    Hi,
    We know now why SOA Installer fails...
    Now we need to know why you can not start OC4J properly. What do you see in the log files?
    https://forums.oracle.com/forums/ann.jspa?annID=893
    Cheers,
    Vlad

  • How to install Oracle 11gR2 on Windows 7

    Hi friend;
    There are many questions about *"how we can make instalaltion on win7"*. Thatswhy i made one video tutorial which is mention *"How to install Oracle 11gR2 on Windows 7*
    Its avaliable at my blog:
    *http://heliosguneserol.wordpress.com/*
    Hope it helps who need to make this installation
    Regard
    Helios

    This question is not related to the Database Migration Assistant for Unicode (DMU). Please, post your question to one of the more appropriate forums, for example:
    General Database Discussions
    Database Installation
    -- Sergiusz

  • How to Install or Run on Windows Xp/7

    Hi, I just see the bin/kvctl for Linux.
    How to Install o Run on Windows ?

    The actual command to invoke kvlite is pretty simple. From the bottom of the kvlite script:
    java $LOGGING -cp $LIBDIR/kvstore-1.1.100.jar oracle.kv.util.kvlite.KVLite -root $KVROOT -store $KVSTORE -host $HOSTNAME -port $REGPORT $ADMINPORT
    Here is a .cmd file that you can use (it's not supported). Some of our developers run on Windows but it is not a supported platform since we don't run our qualification tests on it. It's Java code, so in theory, "it should just work".
    @ECHO OFF
    CLS
    SET RETURN_CODE=
    SETLOCAL
    echo %~dp0
    SET HERE=%CD%
    SET BINDIR=%~dp0
    cd %HERE%
    SET LIBDIR=%BINDIR%\..\lib
    SET EXAMPLEDIR=%BINDIR%\..\examples
    SET KVSTORE=kvstore
    SET HOSTNAME=127.0.0.1
    SET REGPORT=5000
    SET KVROOT=kvroot
    SET LOGGING=
    SET ADMINPORT=
    setlocal enabledelayedexpansion
    :LOOP_ARGS
    SET ARGNAME=%1
    SET ARGVALUE=%2
    IF NOT "%1"=="" (
    IF "%ARGNAME%"=="-store" (
    SET KVSTORE=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-port" (
    SET REGPORT=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-root" (
    SET KVROOT=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-host" (
    SET HOSTNAME=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-admin" (
    SET ADMINPORT=-admin %ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-logging" (
    SET LOGGING=-Djava.util.logging.config.file=%EXAMPLEDIR%
    /logging.properties
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-usage" (
    call:USAGE
    GOTO:end
    ) ELSE (
    IF "%ARGNAME%"=="-help" (
    call:USAGE
    GOTO:end
    GOTO LOOP_ARGS
    IF NOT EXIST %KVROOT% (
    MKDIR %KVROOT%
    echo Store "%KVSTORE%" starting ...
    java %LOGGING% -cp %LIBDIR%/kvstore-1.1.100.jar oracle.kv.util.kvlite.KVLite -root %KVROOT% -store %KVSTORE% -host %HOSTNAME% -port %REGPORT% %ADMINPORT%
    echo.&goto:eof
    ::-- Usage Function
    :USAGE
    echo Usage: run-kvlite.sh [-help]
    echo [-logging]
    echo [-store storeName]
    echo [-port port]
    echo [-host hostname]
    echo [-root rootDir]
    echo [-admin adminPort]
    echo -logging enables console logging
    echo -store defaults to kvstore
    echo -port defaults to 5000
    echo -host defaults to localhost
    echo -root defaults to ./kvroot and is created on demand
    :end

  • How to Install Oralce 8i on Windows 7

    How to Install Oralce 8i on Windows 7
    please help me to install oracle8i in windows7.it is giving error not found jrew.exe

    784182 wrote:
    I too would like to know how to install Oracle 8i on Windows 7. Most of you responding seem to think that this is a "stupid" idea. I am trying to connect to a VAX 6630 running Oracle 7. My client is a billion $ top 10 Fortune 500 multi-national company that has been in business longer than Microsoft AND Oracle put together. The VAX 6630 has been running over 20 years and the disks have been spinning just as long. This is a lot better than Microsoft can do considering they can't even put together an operating system that works for more than a couple of years. Welcome to the REAL world, pal.
    I am currently connecting to the VAX with Oracle 8i installed on Windows XP. Works great! So, putting aside all the snickering, can you answer the question or not? No time to laugh here. We have REAL world problems to solve.The VAX was a great machine with a great OS. I'm not surprised it is still humming along. Perhaps, from a pure business standpoint, this reliability is what led to the demise of DEC ... once you buy their equipment, there's little reason to spend more money with them. But all hardware fails eventually. Where do you get hardware support for this setup?
    What do you do with your real world, Fortune 500 problem when you have to ask for help from Oracle? What is their response?

  • How to install hyper-v on windows 8 ?

    How to install hyper-v on windows 8 ?
    I want to install virtual PC but after some research I came to know that windows 8 no longer support virtual pc and it has been replaced by something called hyper-v.
    I just bought a Windows 8 laptop.
    I tried looking into windows on / off features (in control panel) and there is NO hyper-V.
    I know why I don't have hyper-V because after doing some research it seems like it is only available on windows 8 PRO.
    Here is comparison chart:
    http://en.wikipedia.org/wiki/Windows_8_editions#Comparison_chart
    I have Widows 8 on my laptop (NOT Windows PRO).
    Now in this situation, how to install hyper-v on my laptop ?
    Also, will I be able to run windows 7 virtually on my windows 8 laptop using hyper-v just like virtual pc ? like switching in windows between OS ? If I cannot do this and hyper-v does not work like virtual PC then I don;t think hyper-v will be useful to
    me at all and i don't wanna figure it out if it is not useful in any way ?

    Hi jeffcarter,
    To enable the Windows 8 Client Hyper-V feature, our computer needs to meet the following requirements:
    1. Hardware supports Second Level Address Translation (SLAT)
    2. 64-bit Windows 8 Pro or Enterprise.
    3. 4 GB or above of RAM.
    Therefore, it seems that your computer cannot install Hyper-V. Also, Windows Virtual PC cannot be run on Windows 8. Thanks for your understanding.
    In addition, regarding how to configure your BIOS to enable Intel VT-X, you can refer to your motherboard’s operating manual or query the vendor support for help.
    More information:
    Client Hyper-V
    Bringing Hyper-V to “Windows 8”
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

  • How to Install Oracle 10g in Windows 7 Home premium 64bit operating system

    Hi,
    I am using Windows 7 Home premium 64bit operating system. While i was installing oracle 10g i got error and not able to install. How to install the Oracle 10g databse on this operating system. Is there any patch to install this or i have to use other version of oracle with window 7 operating system?
    Thanks in advance
    Mayank Adhikari

    The argument would be who wants to install Oracle database on Windows 7. I think most probably by the developers who wants to "Try" something prior deal with a production database, right?
    For a developer, installing database using the hack is more than NOT having a local database running from the local system. I installed all the products mentioned with windows7bugs post and used the following tools to successfully connect and retrive data from the database instances.
    Toad 9.7.x.x
    SQL Developer
    SQL/Plus
    Developer 6i (Another hack, please check this link http://windows7bugs.wordpress.com/2010/03/01/installing-oracle-developer-forms-reports-6i-on-windows-7-64bit/).
    I think the discussion about whether all the features of client/server are still available with such a hacked installation is meaningless as far the information requested was strictly for Windows 7, not for a Server OS.
    regards,

  • How to install PS 7 on windows 7- 64 bit

    Help to install PS 7 on windows 7- 64 bit

    Ok but I read that PS 7 was only a 16 bit install. How do you get it to install on a 64 bit system?

  • How to install SAP GUI in Windows 8.1

    Hi,
    Please guide me how to install SAP GUI in OS Windows 8.1
    Regards,
    Priya

    Before installation of SAP GUI we need to know the OS details and the OS system Bits (32 / 64).
    NW SAP Setup
    • Download the software @ SAP Site using S user login ID.
    • Download the Software gui730_0-10010496 (include the patch 6 hotfix 1)
    • After download Extract it and go to the path and install.

  • How to install oracle 8 on windows xp

    i use windows xp and (pentum 4 processor )
    my question :-
    i want to how to install oracle 8 (client) i try to do this but the installtion can't complete and there was no any error message ...
    please help me and tell me step by step
    thanks

    ok how to install oracle 8 client on windwos 2000 pro
    please help me

  • How to Install Oracle 11g on Windows Vista

    Hi Everyone, this is Abhinay here i am a Graduate Student from Electronics and i am planning to shift to CS background the main thing i want to know from you guys is " A structured procedure of Installing Oracle 10g on Windows Vista"- So can any one of you guys help me out??????????

    Hi, how are you doing ?
    Just one advice about it. If you want to work with Oracle databases, it will be better to install it on certified OS's. Doing so, you will get better experience and more realistic experience on it.
    Following the Oracle database documentation, you will get all that you need to successfully install the database in the certified OS.
    Regards,
    Shin-Iti

  • How to install Oracle patch in windows

    Hi,
    I have installed oracle service registry and was facing below error:-
    org.idoox.wasp.WaspInternalException: java.lang.RuntimeException: Updates to config files not supported
    After searching on Oracle Support, i come to know that patch p9499508 is required for this bug.  I have downloaded the patch from oracle.
    Now i don't know how to install/use this patch . I'm using windows and installed everything on my local machine.
    Does anyone have idea on it??
    Thanks,
    Vinit

    Thanks Mathieu. I have checked 'Readme' file and followed instructions mentioned.
    But don't understand how to follow below mentioned by you:-
    Set the oracle_home where the patch will be installed.
    Use the "lsinventory" argument of opatch
    Use the "apply" argument of opatch

  • Need help on how to install external web cam on a macbook?????

    Hi , does anyone have any idea if you can install and use an external webcam and how to install it on a macbook 13.3 in, black, 10.4.11 with intel processor. I have tried like months and months to connect my logitech web cam with no success what so ever. I been racking my brains trying to figure it out. I even called tech support by phone and they weren't really any help. They just said it can be done. I tried downloading the drivers that came in a cd with the logitech and nothing. Every time I try and use my external logitech on a site the built in one on the macbook comes on instead. There has to be a way to bypass the built on one. I know there has to be people out there using external webcams on macbooks. Any help would be appreciated.

    Centaur3 wrote:
    Hi , does anyone have any idea if you can install and use an external webcam and how to install it on a macbook 13.3 in, black, 10.4.11 with intel processor. I have tried like months and months to connect my logitech web cam with no success what so ever. I been racking my brains trying to figure it out. I even called tech support by phone and they weren't really any help. They just said it can be done. I tried downloading the drivers that came in a cd with the logitech and nothing. Every time I try and use my external logitech on a site the built in one on the macbook comes on instead. There has to be a way to bypass the built on one. I know there has to be people out there using external webcams on macbooks. Any help would be appreciated.
    I can't advise on your Logitech webcam, but I am using [this webcam|http://www.bestbuy.com/site/Dynex%26%23174%3B-+1.3MPWebcam/8703094.p?id=1199495403693&skuId=8703094]. First used on a iMac G5, OSX 10.4, then later moved to a Mac Mini OSX 10.5 (and now OSX 10.6.2 on the Mini.) I got it not because it's the best webcam, but because it was one of the few that said it worked with OSX 10.4. (Other webcams I had needed 10.5.) I have tested it on my Macbook Pro (OSX 10.5 and upgraded to 10.6) and it works, but I don't normally use it there.

  • How to install oracle 9i on Windows XP

    Could someone please tell me how to install orale 9i downloaded from oracle site on windows-xp for home. Could not find setup.exe file in any of the three downloaded files. I am new to oracle. Thanks for any lead or suggestions.

    Unzipping gives you three disks worth, inside disk1 there should be a file 'setup.exe'.
    If not you could try using a download manager like 'getright' to make sure you've "really" got what was posted (windows isn't so hot at getting it right) - getright is so good I paid for the shareware :-)
    Hope that helps
    Jason.

Maybe you are looking for

  • How do i remove all traces of a print driver

    I need to remove all traces of my print driver for my canon printer. I loaded my canon iP pixma 4000R with a print driver i downloaded. It seems to be a japanese version as the paper standards are all a bit strange. No 4x6 option, instead, something

  • Apex 3.2.1. Reports - PDF printing using Oracle App Server 10.1.2.3

    The documentation I can find re. Apache FOP references App Server 10.1.3.2, can I configure on 10.1.2.3 - Is there any docs on how?

  • How to convert base64 data to an image

    Hello, my enterprise application is receiving base64 enocoded image data in an xml file. Now I need to convert it to a native image formats like jpeg/jpg/tiff/pdf etc. Does anybody know if there are any Java apis (both free/paid) which let you do thi

  • Best Replacement AC Adapter?

    Why-oh-why does Apple refuse to make a better adaptor for their laptops? I know they could do it if they just put their minds to it. Another sad AC adaptor is looking like it is going to fail me soon. I am now only allowing it to be used when I am ri

  • Publish Crystal Reports to SAP NetWeaver Portal

    We are trying to publish Crystal Reports to SAP NetWeaver Portal.  So far we found that we always have to save to BusinessObjects Enterprise first, and then we found the ID from Crystal Reports in the InfoView.  After that, we put that ID in our iVie