Speakers not working for Skype only on Windows 8.1

My speakers or headphones are not working for Skype desktop but work fine for any music or videos or other programms. Any help to resolve it? in Tools>Options>Audio Settings> headphones does not show up. Everything was working fine but it just happend a day before., i havent installed any program that could make problem.

This is very strange because, as you are saying this happened without any change to any software on your computer. I suggest the following:
1. To help the team analyze the issue, provide logs as described in this link  under Skype for Windows Desktop and attach it to your post.
2. As an interim solution you can try using a virtual audio device that will be a middle man between skype and your physical audio device.

Similar Messages

  • Camera is not working for Skype in Mac OS Maverics

    Hi,
    I have MacBook Pro (Mid 2012).  I have updated it to MAC OS Maverics.
    Since then camera is not working for Skype (Version 6.8.0.351)- only at the start it works for few seconds and then it freezes.
    It was working fine with Mac OS Lion.
    Please suggest some wayout from this.

    Shirsendu wrote: ... not working for Skype (Version 6.8.0.351....
    Install Skype Update: Skype_6.9.0.517
    Message was edited by: EZ Jim
    Mac OSX 10.9

  • My webcam is not working for skype and other appli...

    Hello,
    My webcam is not working for skype and other applications i have used tinychat and tango..i have updated all version of skype as you said in other topics but all of them is not working for me...my device name is vimicro usb 2.0 and i have accidently deleted that device now i have installed that device again but its not working i have seen all topics please help me  ...
    i will be very thankful to you

    Please,  run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post.
    Be aware that you will have to zip this file before attaching it here.

  • CF10 64bit  Apache connector (mod_jk.so) does not work for Apache2.4.3 (windows)

    CF10 64bit  Apache connector (mod_jk.so) does not work for Apache2.4.3 (win64), where can I get a module that works?
    I get this error from Apache :
    C:\www\Apache2.4\bin>httpd -t
    httpd: Syntax error on line 741 of C:/www/Apache2.4/conf/httpd.conf: Syntax error on line 2 of C:/www/Apache2.4/conf/mod_jk.conf: Cannot load C:\\ColdFusion10\\config\\wsconfig\\1\\mod_jk.so into server: The specified procedure could not be found.
    I have already tried manually extracting the pre-built mod_jk22.so from the wsconfig.jar with same results.
    If I switch to Apache 2.2.22 64bit, it does work.  what I need is to be able to run on Apache 2.4.

    Please check out this link.
    http://rob.brooks-bilson.com/index.cfm/2012/2/21/Installing-ColdFusion-10-with-Apache-on-W indows
    In this link, they are configuring with Apache 2.2 only.
    When we were working colfusion 9 with Linux and apache, we had the same problem, it will work when it connect to Apache 2.0 but not with Apache 2.2 version.

  • SPSecurity.RunWithElevatedPrivileges Not Working for Read Only Permissions Users

    I have the following code in a method that generates tabbed web parts on any page in SharePoint 2010.
    The problem is that it will not work for users who have Read access only on a SharePoint site.  It will work when those users have Contribute access.  
    So even though I have elevated permissions in the code it does not actually elevate the permissions at the point where it is needed.
    if (panel != null)
    try
    using (SPLimitedWebPartManager wpManager = SPContext.Current.Web.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    try
    // Elevated previleges required for EXPORT and IMPORT. Else Users with normal read access will get errors.
    SPSecurity.RunWithElevatedPrivileges(delegate()
    // Retrieve the web part titles in the ConfigureTabs XML string for this tab.
    var webPartTitles = from t in xDocument.Descendants("webPart")
    where (string)t.Parent.Attribute("name") == (string)e.Item.DataItem
    select (string)t.Attribute("title");
    foreach (string wpTitle in webPartTitles)
    foreach (System.Web.UI.WebControls.WebParts.WebPart webPart in wpManager.WebParts)
    // Find the matched closed web part in WebParts collection
    if (webPart.Title == wpTitle && webPart.IsClosed == true)
    string errorMessage;
    //ADD EXPORT PROPERTY
    webPart.ExportMode = WebPartExportMode.All;
    MemoryStream stream = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(stream, System.Text.Encoding.UTF8);
    // Export the closed webpart to a memory stream.
    wpManager.ExportWebPart(webPart, writer);
    writer.Flush();
    stream.Position = 0;
    XmlTextReader reader = new XmlTextReader(stream);
    // Import the exported webpart.
    System.Web.UI.WebControls.WebParts.WebPart newWebPart = wpManager.ImportWebPart(reader, out errorMessage);
    reader.Close();
    writer.Close();
    // Show the imported webpart.
    panel.Controls.Add(newWebPart);
    break;
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please check your XML configuration for error. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please Check SPContext.Current.Web is not null. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    This snippet of code was originally pulled from a microsoft technet article on creating Tabbed web parts "the correct way" but it doesn't work in all scenarios.
    Is there a way to get this code working for Read/Visitors to a SharePoint site?

    From initial observation what I see is that your SPLimitedWebPartManager is not created from an elevated web. Try like below
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite elevatedSite = new SPSite(SPContext.Current.Site.ID))
    using(SPWeb elevatedWeb = elevatedSite.OpenWeb())
    using (SPLimitedWebPartManager wpManager = elevatedWeb.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    { //Rest of your code
    Geetanjali Arora | My blogs |

  • Style Code Not Working for Read Only Users !

    Hi 
    Can anyone help us with this issue. We have created some special Styling code in order to hid the Quick Launch on the home page of our main SharePoint site. The Styling works no problem at
    all for users with edit rights, however we found that the styling did not work for users with read only access.  What we found was that if we switched on the "Edit Items  -  Edit items in lists, edit documents in document libraries, and
    customize Web Part Pages in document libraries." in the List Permissions for the Permission Levels for the Read Access group, the Styling then works no problem at all. HOWEVER it then gives those users the ability to EDIT the site page, as it then
    puts the Edit option on the page top right for the user to click and then mess up the web page, which we can not permit. 
    SO..... How do we get this styling to work for ALL user types ?

    Hi,
    This usually happens when the CSS file is not published or approved, please check it.
    If the CSS files uploaded in the Style Library, please check whether you had to check in those CSS files or not.
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Plug and play speakers not working properly after upgrading to Windows 8.1

    After upgrading to Windows 8.1, my plug and play speakers do not work properly.  I have uninstalled and reinstalled them, and restarted.  When I try to play music, nothing comes out.  If I turn them off and back on, music will play for approximately 30 seconds, only from one speaker, then it turns off and fades to no sound.  They worked fine until I upgraded to Windows 8.1.  The manufacturer has not been able to successfully assist me.  Has anyone else reported a similar issue after upgrading OS software?  Any suggestions?  These are fairly new speakers, less than 2 years old, and not used very much.  I do have them installed via a K-V switch, and all other devices linked to the K-V switch are functioning properly (monitor and wireless keyboard).  Any suggestions would be greatly appreciated.

    @sisboldt ,
    Hello and thank you for posting on the HP support forums.
    So that I can better help you with your sound issue.  Please post back with your full model and product number.  Use this link to help you find the information.
    HP Notebook PCs - How Do I Find My Model Number or Product Number?
    Here is another link you may find useful.  Please give it a read before posting back with your system information.
    Advice for asking the "Very Best Question"
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • P205-s7469 speakers not working for windows 7 64 bit

    I recently upgraded from vista 32bit to windows 7 64 bit. My laptop is equiped with harman/kardon speakers, 2 main speakers and sub woofers under the laptop. The speakers worked fine under vista, now that I have windows 7 my speakers sound  bad and the sub woofer will not turn on. I have installed all sound drivers toshiba has listed on their downloads page and still experience the same issue.
    Anyone have any thoughts or similar issues?

    Can you please give the Product number for your Notebook, I put a link below if you need help finding it, please don’t put your Serial number.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00033108&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US...
    I am an HP employee
    Knowledge is power...Power to the people

  • M177fw wireless not working for scanner only-have same printer in second location

    I have this exact same MFP laserjet in another location that works perfectly over the wifi network.  I just purchased the same printer for a second physical location and installed it.  I gave the new printer a different name when I installed the device.  Printing over wifi works perfectly from two laptops.  The copy function works perfectly.  I cannot get the scanner to work at the new location from either laptop.
    When I installed the software on one of the laptops, I got a message that the driver was already present and suggested I use the existing version already installed.   So I used the already installed software.  For this laptop, I have a shortcut from the start menu called HP Scan.  At the original location, this works fine over wifi.  For the new printer at the new location, when I start HP Scan from either the HP folder or the shortcut, I get a box titled "Scanner Unreachable.  Scanner communication cannot be established..."  and suggests updating the IP address.  I looked at the printer configuration and the ip address is correct.  
    I reset the printer to the factory settings, rebooted the modem and configured the printer again, hoping that the correct IP address would populate correctly, but I have the same problem.  So my questions are:
    -Is it likely that the IP address is the problem for the scanner and how do I fix it?
    -If it is the IP address, what can I do to not have to manually change it each time I go to a different location?
    -If not, what is the likely problem?  What can I do to fix it?

    Hi,
    As you mention "When I installed the software on one of the laptops, I got a message that the driver was already present and suggested I use the existing version already installed.", such a message is common for adding a printer from the Windows Add a Printer wizard, may you added it by clicking add printer under Devices and Printers?
    If so, that may explain the issue as the printer should be added via the HP Software for the HP Scan to operate.
    Be sure to remove the newly added device first by right clicking it and selecting Remove Device, then reboot your PC.
    From the Start menu select HP and open the printer folder. then select Reconfigure your HP device.
    Follow the steps on screen to add the printer on your current location and check if that may help,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Wired Logitech Mouse not Working on Desktop only in Windows 7

    I used a wireless, but got fed up changing batteries so went back years ago to using a wired mouse when using Windows 7.   However, about 1 in 4 times, in the last few months, when I switch on my computer, the mouse will not let me choose
    if I want to go into my pages or my partners' page.  It just hovers all over the Desktop and I have to switch off the computer and reboot it to get the mouse to work properly.  THIS ONLY HAPPENS WHEN I SWITCH ON THE COMPUTER AND ONLY HOVERS
    IN THE DESKTOP.
    I have used more than one mouse and have put it in different ports and it makes no difference.  Somewhere on my system when the computer starts up, it randomly does not recognise the different wired "mouses" I use.  Otherwise
    I have no problem using the mouse and it generally works fine.
    Any suggestions on how to fix this start-up/desktop mouse problem?  Thanks.

    Hi,
    Try to uninstall the USB controller driver:
    1.Open the Device Manager.
    2.Expand Universal Serial Bus controllers.
    3.Right-click every device under the Universal Serial Bus controllers node, and then click Uninstall to remove them one at a time.
    4.Restart the computer, and then reinstall the USB controllers.
    Check the result again.
    Alex Zhao
    TechNet Community Support

  • Why does my camera not work for Skype?

    I downloaded Skype from the app store but for some reason my camera does not turn on.  I have seen several responses on other various forums.  I guess part of my problem is also the fact that I am not as technically sound as others and I get lost in the verbage being used.  I tune out when the dialogue response gets too long. 

    in sted of using the Skype app from the app store i would do it munualy from the website. befor using the camera though on some apps or websites it should/might ask you to use the camera you will need to enter the password (if you have on) and click yes its a small box looks like something from windows. Hope that helped let me know if you have any further questions!!

  • Itunes Equalizer not working for video - only affecting songs

    I have noticed that any Itunes equalizer settings that I select only affect songs in my itunes library. Videos are not affected at all by the equalizer settings. This means if I have a very dull sounding video I cannot use the equalizer to improve the audio. Does anyone know how to make the equalizer affect videos within itunes. Thanks in advance

    Apple does not care. You have already bought their product and that's all that matters... They got your money and they're happy; you don't have to be. Sadly, all you've paid for is a nice logo on the back of what should be an amazing device.
    Only buy an iPod/iPad/iPhone/iDevice if you are trying to impress your friends. Don't buy one if you want to be impressed, because this will not be the case. It will serve no purpose beyond making you look as though you have money to throw away.
    But, since you have already given them your hard-earned money, I suggest you don't use an EQ setting. "Off" works best as it produces the least amount of distortion on the iDevices I've tried.
    Hope this helps and "enjoy" your Apple experience.

  • X201 Tablet: Drivers not working for Network controller on Windows 7 Pro x64

    Hello,
    After downloading and installing all LAN and WLAN drivers for X201 Tablet, I couldn't find one that works on Windows 7 x64.
    How can I proceed?
    Thank you in advance
    Solved!
    Go to Solution.

    I fixed it by downloading this drivers:
    https://downloadcenter.intel.com/download/18713/Network-Adapter-Driver-for-Windows-7-
    And after installing them and restarting, searching for them manually from the Device Manager.
    Cheers

  • Recovery media not working for Satellite L455 S5000 , windows 7 -64bit

    Guys, My Satellite L455 crashed the drive. I ordered the kit from TOSHIBA to do a factory reinstall. The instructions says: Hold "C"key while bringing computer up. I tried it several times but nothing happened. I tried to boot from the DVD drive but it din't work at all. How may I do to restore my PC using the recovery media with a new drive ? Remembering it's Satellite L455 -S5000 , windows 7 , 64 bit. Thanks in advance. Joelson

    Thanks for the replies.
    The HDD is completely broken. The recovery partition gone too.
    About the F12, I tried it.
    Choosing the DVD drive to boot using the recovery disc #1 inside nothing happens.
    The DVD drive starts, first acess to DVD media happens but nothing appear in the screen. Few seconds after the system try to boot from the new HDD that is empty.
    My objective is reconstruct the windows in the new HDD bringing back the HD to it's original structure ( without any data ) like a new one.
    Remembering that old drive and new one have the same size ( just the brand is different , new one is SAMSUNG SATA ) . Old one was TOSHIBA .
    Any insight is welcomed.
    Thanks a lot.
    Joelson

  • Iphone4 speakers not working while calling!!

    Hi
    Can somebody help me?
    My Iphone4 speakers not working while calling only and they work elswhere!!
    I tried to reset the devise with sleep and home buttens but nothing changed?!
    Thx

    Hi
    Can somebody help me?
    My Iphone4 speakers not working while calling only and they work elswhere!!
    I tried to reset the devise with sleep and home buttens but nothing changed?!
    Thx

Maybe you are looking for

  • Browser not showing the report.

    Hi we have forms and reports developed using developer suite 10g.Our application server is with OS windows 2003 and database is oracle 11g on vista 64 bit. Our client pc is vista and there was no probem we were able to generate forms and reports in m

  • Overhead and settlement in WIP

    Hello, We have a material and COGM for that is: 2000 and COGS is 2400. But we are updating the COGM only to Material master as standard price. When we run the WIP and Settlement system is showing 400 as difference and it is going to Price Difference.

  • Bluetooth Headset Crashes ...

    after opening a .pdf in preview, An incredible Noise is the only thing i hear after i open a .pdf in preview. I have to shut down bluetooth to get it back to normal. Any one else facing problems like this? Regards, René Macbook Air 11, Mid2013 1,3GHz

  • Iphoto won't open thumbnails

    I took my '09 macbook to shop -- it was running extrememly slow with color wheel all the time I tried to do anything from browsing web to email and I couldn't get it to restore from time capsule. When I got it back I noticed that the updates that I h

  • Static errors

    i dont fully understand this from what i understand though i need my public static void main( String args[] ) to run my main method, but i keep getting errors saying i cannot use a non static variable in a static method. But i cant change my variable