T61 Notebook Hardware Control dont work help

hello, I bought a license  Notebook Hardware Control Lenovo  t61 goes can someone help me and I look ACPI control system not yet Configured

@GMAC-R60:
Because the Hotkey driver is installed, bluetooth cannot be activated by pressing Fn-F5 until the BT-driver has been installed.
Otherwise:
Bluetooth can be enabled before the Hotkey-driver is installed.
I've tested it on several T61/X61 and older.
My home-forum: http://www.thinkpad-forum.de
Wiki: Deutsches ThinkPad-Wiki English ThinkWiki
My ThinkPad-Collection

Similar Messages

  • Lower volume button control not working help?

    Lower volume button control not working help?

    If you only restored from backup, restore to factory defaults/new iPod.  If you then still have the problem it is likely a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • The update dont work help

    The iOS 7 dont work HELP ME

    What exactly happened? It is not unusual to get  error messages of there was problem downloading the update because the severs are very busy.

  • Notebook hardware control on a Satellite

    Hi,
    I want to ask if somebody has expirience with the programm notebook hardware control on a toshiba satellite.
    Greetings.

    Hi Olser
    Usually if you use Toshiba designed tools it is enough for successfully notebook usage. Can you please tell us what you mean exactly with "hardware control"?

  • NEO 2 Problem SATA 3+4 dont work :( help!!

    as post title, some reason I cant run my HDD off of SATA 3 or 4 even with stock speeds on everything,
    I want to over clock the board so not being able to use these will be a real pain, any ideas!??
    Am using 1.5 bios with latest chipset drivers
    HDD is a 120gig Maxtor DM9 8meg cache

    The clue here i believe is that the sata1/2 on marvell PHY bridged to nv chipset works with driver version 0415
    while the sata3/4 with nv-chipset integrated PHY needs 0446 or newer if nvraid.rom is 4.60 or newer .
    So update through
    control panel - system - hardware - device manager
    Nvidia serial ATA controllers (2.5)  from 5.10.2600.0415 -> 5.10.2600.0446 (2.6) (nvatabus.sys , nvatabus.inf)
    and
    Scsi and Raid controller from 5.10.2600.0415 -> 5.10.2600.0446 (nvraid.sys , nvraid.inf)
    Reason:
    Xp installed on raid with diskette nvsa020 (driver versions 0415 )
    Ran chipset install package from nvidia UDP 5.10 .
    As nvatabus and nvraid is already installed it doesn't install or update from 5.10 UDP package ( i have verified this )
    And afterwards the versions on nvatabus(sata controllers)  and nvraid is still 0415 .
    So update theese controllers drivers manually through devicemanager , don't reboot before all of them is changed .
    Then move the raid to sata 3/4 ( sata1 disk -> sata3 , sata2 disk -> sata4 ).

  • HitTests Dont Work HELP????

    Ive got this script. when u press a button u can create a movie clip called man. when u press another button u can create one called enemy. thay both create at different sides of the seane and thay walk past each other.
    but when thay touch each other thay should go to frames inside them. ect Attack,Die. but thay dont help....
    var mans = 0;
    function addman() {
        if (Gold>=10) {
           var man= attachMovie("man", "man"+mans, _level0.getNextHighestDepth(), {_x:95.1, _y:479});
               man.onEnterFrame = moveman;
            mans += 1;
          Gold -= 10;
    btnMan.onRelease = addman; function moveman() {
         if (this.hitTest(enemy)) { 
           this.gotoAndStop(2);//mans fighting frame
    if(enemy.hitTest(MDS));
    enemy.gotoAndStop(2);// enemys died frame
         } else {
    this.gotoAndStop(1);  //mans walking frame     
    this._x += 1.3;
    var enemys = 0;
    function addenemy() {
        if (Gold>=10) {
          var enemy= attachMovie("enemy", "enemy"+enemys, _level0.getNextHighestDepth(), {_x:595.1, _y:479});
                enemy.onEnterFrame = moveenemy;
            enemys += 1;
          Gold -= 10;
    btnEnemy.onRelease = addenemy;
    function moveenemy() {
         if (this.hitTest(man)) { 
           this.gotoAndStop(3);//enemys fighting frame
    if(man.hitTest(EMDS));// a little square called EMDS inside fighting on the frame where he punches
    man.gotoAndStop(3);//mans died frame
         } else {
    this.gotoAndStop(1);  //enemys walking frame
           this._x -= 1.3; 
    help

    You are still missing things that I told you you needed to include yesterday, mainly the for loop.  The code below should take care of the hittests, I have added the loops.  The only issues I see are...
    1. You shouldn't need to do hit tests on both the enemy vs man and man vs enemy.
    2. It is not clear what your intentions are for the MDS and EMDS lines, so I didn't touch them... they are incomplete due to the ";"
    var men:Array = new Array();
    var enemies:Array = new Array();
    var mans = 0;
    var enemys = 0;
    function addman() {
        if (Gold>=10) {
           men.push(attachMovie("man", "man"+mans, _level0.getNextHighestDepth(), {_x:95.1, _y:479}));
           men[mans].onEnterFrame = moveman;
           mans += 1;
           Gold -= 10;
    btnMan.onRelease = addman;
    function moveman() {
    for(i=0; i<enemys; i++){
           if (this.hitTest(enemies[i])) { 
              this.gotoAndStop(2);//mans fighting frame
        if(enemies[i].hitTest(MDS));
        enemies[i].gotoAndStop(2);// enemys died frame
           } else {
         this.gotoAndStop(1);  //mans walking frame     
               this._x += 1.3;
    function addenemy() {
        if (Gold>=10) {
           enemies.push(attachMovie("enemy", "enemy"+enemys, _level0.getNextHighestDepth(), {_x:595.1, _y:479}));
           enemies[enemys].onEnterFrame = moveenemy;
           enemys += 1;
           Gold -= 10;
    btnEnemy.onRelease = addenemy;
    function moveenemy() {
        for(i=0; i<mans; i++){
      if (this.hitTest(men[i])) { 
                this.gotoAndStop(3);//enemys fighting frame
                if(man.hitTest(EMDS));// a little square called EMDS inside fighting on the frame where he punches
                man.gotoAndStop(3);//mans died frame
            } else {
                this.gotoAndStop(1);  //enemys walking frame
                this._x -= 1.3; 
    You should learn about using the trace command to help you troubleshoot your code.  If you had traced "man" in your moveenemy function you would have found that it is undefined, mainly due to it being declared within the scope of a function where nothing outside the function can see it.  The same applies for the "enemy" inside the moveman function.

  • Control center ios 7 music controls not working help

    When I swipe up from the bottom of the screen to use control center I am not able to use the music controls for music or podcasts and music controls do not work on the lock screen either is anybody else having this problem???????

    I also experience this issue. Soft reset of the phone corrects the issue temporarily. However it will reoccur in time. It seems ultimately Apple will need to fix this with an iOS7 update.
    I have noticed several bugs (this being one of many that I am reporting) since upgrading to iOS7 which has been very disappointing. I am a huge Apple advocate and this has not been the experience of "It just works" that I have come to expect from my Apple products. It is because I care so much about the Apple ecosystem that has made my work and play so much more enjoyable that I will take the time to report these in hopes that Apple will take notice and that subsequent updates will address these issues. 

  • Installed Vista 64 however boot camp drivers dont work - Help

    I have a Macbook Aluminum with 4 gb ram.
    I just installed vista 64 bit however - i can get Boot camp drivers to run.
    Please help someone.

    Mac OS X 10.5.4 DVD BootCamp included drivers
    http://support.apple.com/kb/HT1999
    Limited list of Macs that officially support 64-bit Vista
    http://support.apple.com/kb/HT1846
    What does happen when you insert your Leopard/OEM 10.5.x DVD?

  • My new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help

    my new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help
    my iphone4 is 10 times faster
    i have backed up on itunes and restored but still no luck
    even siri is lagging

    my new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help
    my iphone4 is 10 times faster
    i have backed up on itunes and restored but still no luck
    even siri is lagging

  • Premiere Pro CC Source and Program Playback Controls not working.. help please.

    Hi,
    Need your help to find out why none of the Premiere Pro CC Source and Program Playback Controls are working.. I can do playback using spacebar, but not clicking on the controls... same goes the rest.
    Thank you,
    Mauro

    Dear Mark,
    Thank you for the hint/link, reseting the toolbar did the trick.
    Regards,
    Mauro

  • Whenever i try to open my after effect it just says error 15 n dont work plzz help me out

    whenever i try to open my after effect it just says error 15 n dont work plzz help me out

    We cannot know. you are not telling us anything about your system, what kind of project, what footage etc. We don't even know what version of AE!!! In any case, run the Creative Suite Cleaner Tool, reinstall the program. If the issues persist, we realyl need a lot more info to help you.
    Mylenium

  • My burned CD's dont work in my car CD player!! help plz!!

    i have a 99 honda civic with a standard one disc player, honda brand, and wen i put burned audio CD's in they dont work. any suggestions?
    12 inch iBook   Mac OS X (10.4)  

    1st thing to do is double check that iTunes is burning audio and not data CDs. Check in preferences. Secondly try changing your brand of CD. I used to have problems burning onto memorex cds. They just didn't work. Then I've experienced other brands that play in some of my players but not others. Lastly, go to iTunes preferences and tell it to burn on it's slowest setting for better reliability. nb some players will only play audio cds that are CDR, not CDRW.
    Hope this helps.

  • Help !!!!!!!!!! I upgrade my itunes to 10.5, But, my cpu start to reach 100%, and I cant connect to Itunes store! Morever , I did try something that ppl saying delete all program and reinstall again! It dont work to me!

    Help !!!!!!!!!! I upgrade my itunes to 10.5, But, my cpu start to reach 100%, and I cant connect to Itunes store! Morever , I did try something that ppl saying delete all program and reinstall again! It dont work to me! It drive me CRAZY!!!! HELP PLEASE HELP!!!!

    It took about an hour to upgrade my iphone. You're also left a couple of times with a blank screen on the iphone whilst it does things in the background which is a bit confusing. Suggest you wait - it starts doing things again (like reload your apps and then your photos etc) after you think it's finished. It's finished only when it says it is.....

  • Hi, i have lost my code to download apps, my e-mail dont work anymore. how can i reset my password so i can download from appstoe.....pleace help me

    hi, i have lost my code to download apps, my e-mail dont work anymore. how can i reset my password so i can download from appstoe.....pleace help me

    If you have a backup for your iPhone with iTunes on your computer, you can get the iPhone's serial number and IMEI number from the iPhone's backup on your computer.
    http://support.apple.com/kb/ht4061

  • HELP!!! I am getting really fed up with things that dont work.

    I am asking why a year ago i wasted money on Prem elements 8 only to have it not do the same as prem 2 did not do.
    Neither will see my cameras a canon 650i & sony hc320i which were visible on Win 98 with prem elements 2, i now have win7 loaded Pe2 on both my new laptop & my 2 year old HP desktop the HP crashes if i try to go to DVD burn the Toshiba Laptop just does not see camera or DVD burners.
    PE 8 i thought would be a solution after all its up to date but i hate it as a package oh and guess what it wont see camera or burner so great i wasted my £100+ on something thats horrid to use & wont work. Bring back PE 2 but how do i make it work on both PC,s.
    Pe2 has always been a problem but worked with a lot of messing but now i can only download onto it from DVD then edit slowly ie 15 minutes for every tag on the timeline but having done this it will not see a burner.
    Im not a techy but was told to re load Roxy or Nero missing out bits, i cant see either on my pc,s anyway & dont have the programs to load. the burner works with other programs so my guess is that Adobe just dont add the bits that do the job.
    Well as you can guess i am fed up haveing spent money on something that does not do what it said on th box it just rubbish to expect a mere mortal to play around with a pc.
    Question then is this simple, How do i get this to work properly without getting techy & download to DVD in PAL format and talk to the camera without it crashing my PC.

    Hi in reply to this both cameras are dv video cameras the sony being 3 years old & great the Caon is 5 years old having been bought for the athens olympics. Operating system as stated is win7 that does see the cameras on my lap top. i dont know what other facts you need.
    I have contacted Adobe at least 3 times since buying Adobe PE8 the last time pointing out very unhappily that customer service is about replying to emails. The customer service contact is the one with the original packing. i have to say this is getting me no where. I want it to work when loaded its on a new PC where nothing has been added as one of your colleagues has  there is no'downloaded trash' the only programs on it are those that came with it plus PE8.
    Life & PC's are supposed to be fun this is not. when i have the time to wait for elements to talk to the net 7 crash again i will ask for more help either Windows 7 is rubbish or the link to adobe. sad really
    Date: Fri, 18 Jun 2010 06:26:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: HELP!!! I am getting really fed up with things that dont work.
    Your Canon 650i is a still camera. You should be able to download the photos from it using either Photoshop Elements or the Premiere Elements Media Downloader. The video, per the FAQs to the right of our forum, will likely need to be converted before you can edit it in Premiere Elements.
    I could not find any specs on a camera called the Sony HC320i, so I have no idea if this is a still camera, a tape-based or hard drive based camcorder or even an AVCHD unit.
    Beyond that, you really haven't given us nearly enough information to help you out. If you're unhappy with the software, you can certainly contact Adobe by clicking the Contact button at the top of this page.
    Meantime, does Windows recognize a connection to these cameras/camcorders when you plug them into your USB or FireWire port? If not, the issue is with your system. Not the program. Without knowing what operating system you're using, it's hard to advise you beyond that.
    Meantime, have you gone to Premiere Elements Help menu and selected Check for Updates to get the 8.01 patch?
    Have you gone to Windows Update and manually downloaded the non-critical updates to ensure your system is completely up to date?
    Again, if you're as frustrated as you are,  I'm surprised that in the past year you have not contacted Adobe. At the very least, you could have asked for a refund within the first month or so.
    >

Maybe you are looking for

  • Which one do you use?

    I recently started asking myself which stability and stress program to use. Theyre many, but i usually chose between those 3: 1.Stress prime 2004 by Johnny Lee 2.Super Pi by the japanese record breaking guys 3.the well known prime95 (which i dont lik

  • Tutorial on how to create an Ajax-enabled JSF component in Creator?

    Is there a tutorial on how to create (not use/import existing) an Ajax-enabled JSF component using Creator 2? I read somewhere that it was done during a presentation in 3 minutes! Now that I really want to see ;- thanks, -nikita

  • Can Nokia 6630 Web browser be set to use MMC?

    Hi all I have a Nokia 6630 and it works very well for most purposes, but I have been experiencing problems with the web browser. I like to browse the internet and save pages to my phone's memory using the Advanced option under Bookmarks. It seems tha

  • I reformat my iMac but i lost my way to connect to wi fi it does not appear anymore, please help!!!

    Something went wrong with my imac recently so I decided to reformat using the origal 2 disc with it. But for some reason I lost my way to connect to Wi - Fi. Is there any disc I need to install it? What did i did wrong?. How can I get back the wi-fi

  • How to install ios5 beta dmg on iphone 4?

    Hello i have paid for the developer account, and i got my permission to download the ios 5 beta and also itunes 10.5. So i did that and i downloaded itunes and installed it. no problems. I downloaded also tje ios5 for my iphone 4. But here the proble