Audio problem with T61 running windows 7

hello,
After installing windows 7 Enterprise on my T61, I have no sound.
Driver seems to be installed correctly (Device manager), speakers taskbar icon looks & functioning OK, but i can't hear nothing.
I've installed the suggested Vista driver from Lenovo web site, but the problem remains...
I must mention that there was no problem while using Windows 7 RC, the problem started after installing a clean copy of Win 7 pro.
Any suggestions?
Thanks in advance,
Eyal.

I've installed win7 over a dozen times on T61 models and never had a problem. Perhaps if you can provide more information, did you reformat your drive before install, or install overtop an existing windows version? If it helps, all my installations are on a freshly formatted partition. Windows installs working drivers on everything except the ricoh card reader, for that you just need to manually install the vista drivers from device manager and it will work. I then run system update and it installs newer drivers for some of the hardware, but like I said, never had an audio problem.
ThinkPad W-510 i7-820QM(1.73-3.06GHz) Quad Core... ThinkPad T500, T9900, 8gb SSD...FrankNpad T-60p/61p (X9000 2.8ghz) 8gb SSD ips FlexView...ThinkPad T-61p (T9300 2.5ghz) 8gb ram...Thinkpad X-61 Tablet 4gb ram...ThinkPad A-31 (1.9ghz P4 1.5gb ram)

Similar Messages

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Windows 8.1 Problem with games from windows store.

    I've got a problem with games from windows store. The installation is going well without any problems, however when I try to open it it's loading and then it turns off. The same problem happens when I try to use Games for Windows. I've use a sfc scan and
    it shows some errors but unfortunately it cannot fix them. Should I share the CBS log or find the solution somewhere else? I hope you help, best regards.

    Hi,
    According to my experience, the problem like store game app open failed probably caused by hardware driver. such as Audio and Graphic driver. So, first of all, please try to reinstall these two driver to fix this problem for test.
    In addition, for SFC scan failed problem, it can be caused by many reasons, I would suggest you use another command to fix your system for test.
    Dism /Online /Cleanup-Image /ScanHealth
    Also you can test SFC command in Windows 8.1 safe mode.
    Thirdly, if problem persists, please check Event Viewer, generally speaking, it would record the app open failed events.
    Roger Lu
    TechNet Community Support

  • Update KB2952664 failed on 10-15-2014/ran mr fixit and it failed to fix problem/I'm running windows 7 64 bit. what can I do?

    Update KB2952664 failed on 10-15-2014/ran mr fixit and it failed to fix problem/I'm running windows 7 64 bit. what can I do?

    Hi LarBar,
    Like Cyber_Defend_Team said, we need more information to help you analyze your issue.
    Did your KB2952664 Windows Update fail to install? Any errors?
    Have you tried this troubleshooting method?
    Troubleshoot problems with installing updates
    http://windows.microsoft.com/en-in/windows/troubleshoot-problems-installing-updates#1TC=windows-7
    In addition, go to Windows update then click on View update history then click on Installed updates,
    search for the failed kb number and double click on it and it will prompt to uninstall.  Uninstall then
    reboot and go back to Windows update and click Check for updates it should come up and re
    download and install.
    Karen Hu
    TechNet Community Support

  • Firewire audio problems with OS X 10.5.6

    Hello,
    I’m experiencing audio problems with Firewire 400 on my Macbook running Mac OSX 10.5.6.
    I’ve got a 2.4Ghz IntelCore 2 Duo with 4 GB RAM and 59 GB available on the internal HD.
    It’s hooked up to a brand new Mackie D.4 mixer with 2 Firewire outputs. The problems occur on both Firewire outputs.
    I’ve installed automatically from the software update (which I will never do again) to 10.5.6. I never tried the D.4 with 10.5.5 so I can’t tell if the problems occur there also.
    The main problem is that after a couple of minutes of recording the sound starts to break up and get really distorted. After a while the sound comes back again.
    The second problem is that Soundtrack Pro or Audacity don’t get any audio input from the D.4, although audio input is clearly visible in System Preferences – Sound.
    The only sound program that works with all 14 Firewire channels is Ableton, but also in Ableton the distortion occurs.
    An example of the distortion can be checked here:
    http://media.kaalslag.com/firewire-distortion-problem-mackieD4+Macbook.mp3
    I’ve roamed several forums and sites to solve the problem and I tried these solutions:
    I updated again to 10.5.6. with the full combo download from the Apple site. Restarted. Problem still there.
    I shut Airport off, because lots of sites mentioned problems with Airport conflicting with audio/firewire. Didn’t work.
    I did the work around with shutting the Macbook off, disconnecting the D.4, restarting the Macbook, opening Audio/Midi Setup, connecting the D.4 again, toggling the format frequencies a couple of times. Again, no use.
    Right now I’m using my “old” Macbook again to record from vinyl. This one is still running on OSX 10.4.11. No problems so far.
    I’ve had the distortion problems occuring before with an USB interface. Hoped that the Mackie Firewire would solve the problem, but it seems now that there’s a serious audio Firewire problem which is still not solved in OSX 10.5.
    Any help, tips and/or a work around would be much appreciated. Thanks!

    You could try using another computer in Target Disk mode (as an "external HD"), or you can connect the firewire cable and disconnect all other network cables (turning off airport). Then on each computer go to the "Network" system preferences and select "Built-in Firewire" from the list of ports and choose "Manually" from the drop-down menu next to "Configure". Enter the following IP addresses and subnet masks, apply the changes.
    _Computer 1_
    IP Address: 192.168.1.1
    Subnet Mask: 255.255.255.0
    _Computer 2_
    IP Address: 192.168.1.2
    Subnet Mask: 255.255.255.0
    After those ip addresses are entered and you've clicked "Apply", ensure that for both computers you have file sharing enabled (done in the "Sharing" system preferences), and then check the Finder sidebar to see if the computers can see each other (their names should appear under "Shared" in the sidebar--if not, try restarting).
    If the computers dont appear (even after restarting), using the "Connect To" option that's available in the Finder's "Go" menu. In there, to connect to another computer enter it's IP address as follows:
    afp://IP_ADDRESS
    If you're on the computer with the ip address of 192.168.1.1, you would enter 192.168.1.2 as "IP_ADDRESS". The "afp" is the protocol (just like "http" for web), and stands for "Apple Filing Protocol"...Apple's file sharing protocol.

  • USB audio problems with 2013 iMac

    I'm having a strange audio problem with USB microphones and headsets. The issue with my Logitech H650e is shown in this screencast I recorded. In the first part of the screencast, I am not speaking into the mic—yet you can see the levels fluctuating as if there is static playing (not in a natural pattern that you'd see when someone is speaking). In the next part of the video I demonstrate that selecting the built-in iMac mic for input, and then re-selecting the Logitech headset temporarily solves the problem. You can see the input start to fluctuate normally as it should when I am speaking. But at 0:31 in the screencast, you can see the input levels freeze and stop registering anything. I continued to speak until the end of the screencast, but no input was detected. For this screencast, I was on a Go To Webinar call, but the problem occurs regardless of whether I'm using Skype, Go To Webinar, GarageBand or any other software.
    The problem with my Blue Yeti USB microphone is also different. In that case, the input does not freeze as it does with the Logitech headset. The levels appear as you would expect, and it seems to work. However, the person on the other end can hear static in the background, even though I don't hear it in my own headphones. I learned this because I just tried to do a Skype interview with the Blue Yeti, and the interviewer told me they could hear static. We closed Skype and called each other back twice, but the problem persisted. Then, suspecting the problem was related to what I described above with the Logitech, I unplugged the Yeti and then plugged it into my Macbook Air 2013 (also running Mavericks). Lo and behold the static completely disappeared.
    My Griffin iMic and Audio Technica lavalier mic (attached to the iMic) behaves similarly to the Yeti, except in this case I can hear the static when I speak with my monitoring headphones. The input works but I get a lot of cracking and static in the background. This was confirmed by calling the Skype Test Call number and recording a message, which is then played back.
    Here are the facts:
    All 3 of my USB audio microphones/headsets do not work with my 2013 iMac running Mavericks
    All 3 of these microphones/headsets worked fine with my 2008 Mac Pro running Mountain Lion
    All 3 of these microphones/headsets work fine with my 2013 Macbook Air running Mavericks
    In this other thread, several people are reporting similar issues with the iMac 2013 and Mavericks. At least two people did not have the issue when the iMac 2013 was running Mountain Lion. This of course suggests the issue is the combination of the iMac 2013 and Mavericks. 

    Apple>About This Mac>More Info>Service
    Please read the warranty paperwork that came w/your computer.
    You have 14 days to return the computer w/no questions asked. 
    You have 90 days of FREE phone tech support on top of your standard 1 year warranty unless you also purchased AppleCare which gives you an additional 2 years of coverage plus FREE phone support.
    Strongly suggest that you take FULL advantage of the above before it runs out.  Let Apple deal w/the problems.

  • Problem with shares on Windows 2003R2 server from a Windows 8.1 PC

    I'm having problem with shares on Windows 2003R2 server from a Windows 8.1 PC.  It times out when I try to copy a file from my PC to the server and I get an error message saying "There is a problem accessing network drive W:\. Make sure you are
    connected to the network and try again."
    I have no problem copying files from the server to the PC.
    Any ideas?

    Hi,
    How about your problem now? Have you test other machine also installed Windows 8.1? Did they have this problem?
    To diagnose this problem, firstly, please check Windows 2003R2 firewall settings, also can disable firewall temporarilly for test.
    Secondly, try to use Network Monitor to capture network communication package for test.
    Network Monitor:
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    Roger Lu
    TechNet Community Support

  • Problem with touchpad and Windows 8.1. Acer Aspire E5-511

    I bought an Acer Aspire E5-511, but I have problem with touchpad and Windows 8.1.The touchpad (Synaptics) is not working with Windows 8.1 x64, but it works fine with Windows 7 x64 and Windows 8 x64.When I install Windows 8.1 and have to choose” language to install” I can’t choose anything with the touchpad. I should plug in my mouse to continue. I doesn’t work even when it’s fully installed and with latest driver (available only for win 8.1 x64) from Acer’s website. I tried with an older driver, but had no success. I updated BIOS, but it doesn’t work again. In hardware IDS in device manager it shows HID\… not ACPI\… (like win 7/8). Fn+F7 doesn’t help.When I try to install Windows7/8 the touchpad is working properly at the beginning (I can choose ”language to install”, “Time and currency format”… and the touchpad works after install even without driver).

    SOLUTION So guys after deep research and troubleshooting I found that you need to keep notice of a few things at time of installation: Installation Mode: UEFI (only)- LEGACY would create touchpad issues. after installation of windows just follow the driver installation hierarchy 1.Intel NB_Chipset_M Baytrail-M 2.Intel I/O Driver then rest of the crap. Note:After doing all this make sure your touchpad is active >> Fn+F7 Just wished if this solution came from an acer executive , the world would have been a better place , but anyways this is what community is for. Enjoy everyone

  • VGA problem with FiFA 2003 and Audio Problem with NHL2003

    i use onboard VGA
    800 x600for both games
    with no problem
    but for Fifa 2003
    the screen looks so dark...
    all players look like a black people(all  black color hair
    and black face))
    some audio problem with NHL 2003...

    Have you tried the following?
    Adjust monitor settings? i.e. contrast/brightness
    Video settings within the game? Some have gamma or brightness settings.
    Gamma correction in "Display Properties"?
    for starters anyway......

  • Problem with the Finder window in Chrome

    Hello,
    I have a problem with my finder window in Chrome.
    Since the window isn't a separate window anymore, but stuck to the top of the webpage, my finder window is too big. I can't read the "Cancel" or "Send" (I have no idea what's supposed to be there in English but I assume it's something like "send" and "cancel") buttons. I have provided some images of the problem, even if I make the Chrome window as small as possible, the finder window still is too big for my screen. I can resize the finder window from lest to right, but not up or down, which is extremely irritating for me.
    If anyone can help me how I can solve this problem.
    Thanks!

    I found the solution on another thread...Here it is.
    "I was having the same problem.  I found a way to make it smaller.  First, I opened chrome and clicked the green button on the window to make chrome go into full screen.  Then I tried to save a file to make the finder window open in chrome. When it opened in full screen I could see the bottom of the window so I resized it to make it a little smaller.  Once I did this it remembered the size so now I can access the bottom buttons when I take it out of full screen mode. Hope this helps."
    Worked like a charm!

  • HT1338 We are currently running CS3 on Macs with OS 10.5.8 but need to upgrade the OS in order to prepare e-books. Will we have any problems with CS3 running on the later OS?

    We are currently running CS3 on Macs with OS 10.5.8 but need to upgrade the OS in order to prepare e-books. Will we have any problems with CS3 running on the later OS?

    Check the Adobe website for compatibility.
    Ciao.

  • Audio problems with Droid/X

    When sending voice messages using Cloudtalk, the recipient hears only garbage. I contacted Cloudtalk technical support, and it appears that the 3gp file sent by the phone is not recognized. This problem is known by them, and happens only on Droid/X.
    Anyone else is experiencing audio problems with the droid/x?

    That doesn't sound like an audio issue with the X, it sounds like a compatibility issue between the X and the service.

  • Audio problems with CHS 435

    Hello all, I'm having audio problems with my FiOS set top box. When I start to change channels I lose audio and can't get it back unless I turn the TV off/on or I change the HDMI source on my TV . Seems after changing a couple of channels the problem happens. I've tried the in home agent auto correct, and different HDMI cables. I have a Westinghouse TV and I'll try a firmware update for the TV and see if that fixes it. Any fix for this and the possibility that it might be the set top box ? I just got FiOS and all is going well besides this issue. Seems that the other STB that are model # 335 aren't having this problem.

    Some TVs have had issues with the HDMI handshake and the Audio. You may be required to use the separate bulkier HD Component cables with separate audio cables. Or try it as a solution on that TV.
    I have CHS 435 DVR on a Samsung, and 2 CHS 335s on different model Vizio TVs, all with HDMI, and no issues. Others have reported different issues. I did a search here with the following results. Perhaps this information will help.
    http://forums.verizon.com/t5/forums/searchpage/tab/message?filter=location&location=forum-board%3AFi...

  • Audio Problems with some HD channels (HBO mostly)

    I'm experiencing sporadic audio problems with a handful of HD channels.  Most noticably on HBO.
    When the audio is output through the television itself, it sounds OK... however if the audio is output through my home theater receiver and speakers, I can hear a lot of static and "crackling" on certain movies and shows.
    The issue isn't the home theater setup, as I have several other components that use it (AppleTV, Bluray, Xbox, etc.) and the audio sounds perfect from them.
    The only device that displays that poor audio is the FiOS Set Top Box and even then it's only on a few channels.
    I thought maybe that the optical audio cable between the set top box and the receiver may have been bad, so I replaced that.  Same problem even with the new cable.
    The problem is either with the Set Top Box itself or the audio levels on the stream from the channel provider.
    Has anyone experienced anything similar to this, and if so... did you resolve it somehow?
    Any help you could provide would be most appreciated.
    Thanks!

    Check the following.
    Help & Settings > Settings > Entitlement Information
    Here are possible entitlements mapped to channels.
    101 - 104 :  PSB HD
    407 - 433 :  Essential Extra / Unlimited Extra
    446 - 453 :  HD Extra
    501       :  Sky Sports 1
    502       :  Sky Sports 2
    507 - 509 :  BT Sport SD
    510 - 512 :  BT Sport HD
    513 - 514 :  Essential Extra / Unlimited Extra
    530 - 540 :  Sky Movies
    555 - 563 :  Kids Extra
    You need 'HD Extra' for channels 446 - 453. I have the free 'BT Sport HD' but that does not cover entertainment HD channels. You need to subscribe to the HD Extra bolt-on for £3 for them. Have you ordered HD Extra (it only became available from last Sunday)? 

  • Problem with battery running down more quickly after downloading OS6 to 3GS iPhone

    Problem with battery running down more quickly after I downloaded OS6 to 3GS iPhone.

    gdgmacguy
    I guess I should have asked for the "definitive" fix. I read several "fixes" but it seems no one knows if Apple has a definitive fix. Kind of like going into an Apple store and getting three different answers from three different reps. At least they are not rude and no, I don't have a problem searching the forum.
    <Edited by Host>

Maybe you are looking for