T500 Hybrid Graphics problem - how to blindly with Intel card

I bought a Lenovo T500 with a faulty ATI card that worked perfectly with disabled switchable graphics. Unfortunately for some stupid reason, I decided to test the ATI card and enabled feature switchable graphics in the BIOS. Now, the laptop starts with a black screen (internal / external) and I can't go to the option to disable the feature of the hybrid. Is there a way to re - put the BiOS settings so that I can use the graphics card intel?

I tried to remove the bios battery, hoping it would issue zero CMOS but this resulted in a series of additional beeps and not much.

Any help will be greatly appreciated.


Tags: ThinkPad Notebooks

Similar Questions

  • When Acer will solve the problem of 171 P3 with Intel 4000.I graphics have dated the BIOS not solution

    It's rediculus $650 that when a product improved to 8.1 driver for the graphics card does not work. I reinstalled windows 8 and updated upgraded to 8.1 three times for nothing doesn't. Technical support is usless on all this problem, what say, is to reinstall the operating system.

    After trying several drivers, I tried the original pilot of 8.0 for my P3-171 on the ACER site and it worked. I run the upgrade to 8.1 and my HDMI output works with this driver.

  • Add integrated graphics to a laptop only with Intel graphics card

    Hello

    I have hp 4530 s with product number: xu015ut #aba.

    Can I add a graphics card in my computer laptop (ati or nvidia)?

    Hello:

    Only if you replace the motherboard together, which would cost as much to buy a new laptop with the desired graphic solution.

  • problem to get internet with SIM card on the probook 6550 b win7 pro 64-bit

    Hello.

    I'm trying to connect to the internet with a SIM card on my Probook 6550 b with win 7 Pro - 64 bit

    I tried an external USB (called Globesurfer icon) device that works on computers running XP, but I can't make it work on mine.

    I tried to put the SIM card directly into the location corresponding to the battery. Nothing happens when I start the computer, and there is only two options in the wizard wireless (WLAN and Bluetooth)

    I tried to download and install a file (called sp53068) on the HP support site which was supposed to install the drivers for internet cell phone. It is a DOS window, and he said a sentence. Then it just closes.
    I also tried to install all the application files that extracts of the sp53068 in c:\swsetup\SP53068, but they have the habit of work.

    Please help me with this problem. Right now this is my only option to connect to the internet from my laptop.

    In advance, thank you for any help.

    Hello. I just wanted to say that the "mystery" is solved. Simply the USB device doesn't work because it only supports cooperative systems up to Win7 32 bit and no further details. I have 64-bit, so it's a 'no-go '. Thanks for you time.

  • Example problem simple e-wallet with smart card real

    Hi people,

    I develop a javacard applet. Before loading and installation of this applet on our javacard, I tested this procedure with the example of electronic purse widely available on the internet. I think most guys should test this example you were the javacard beginner.

    I think that my problem here corresponds to the bones of chip instead of the applet code, but as not experienced in the world of javacard, I need your help.

    Here is the code of e-wallet (which is correctly compiled, converted, loaded and instantiated/installed on card)
    package companyname.sampleapplet;
    
    
    import javacard.framework.*;
    
    public class Epurse extends Applet {
      private short balance;
      public static final byte CLA = (byte)0x80;
      public static final byte insCredit = (byte)0xA1;
      public static final byte insDebit = (byte)0xA2;
      public static final byte insGetBalance = (byte)0xA3;
      public static final byte insSetPin = (byte)0xB1;
      public static final byte insGetAuth = (byte)0xB2;
      public static final byte insDelog = (byte)0xB3;
      
      OwnerPIN pin;
      
      public boolean select () {
        return (true);
      }
      
      public void deselect(){     
        pin.reset();
      } 
    
      public Epurse() {
        super();
        this.balance = 0;
        pin = new OwnerPIN((byte)3, (byte)8);
        pin.update( new byte[] {(byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00}, (byte)0, (byte)4); //default PIN is 00 00 00 00
      }
    
      public static void install (byte [] bArray, short bOffset, byte bLength  ) throws ISOException {
        Epurse = new Epurse();
        s.register();
      }
    
      public void process(APDU apdu) throws ISOException{
        byte[] buffer = apdu.getBuffer();
        if (selectingApplet()) return;
        if(buffer[0]!=CLA) ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED); 
        ISOException.throwIt(ISO7816.SW_FILE_INVALID);
      
        switch (buffer[ISO7816.OFFSET_INS]){
        case insCredit :
             if(pin.isValidated()) credit(apdu, buffer); 
             else 
              ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
             break;
        case insDebit : 
             if(pin.isValidated()) 
               debit(apdu, buffer);
             else 
               ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);//6986
             break;
        case insGetBalance : 
             if(pin.isValidated()) 
               getbal(apdu, buffer); 
             else 
               ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);//6986
             break;
        case insGetAuth : 
             checkPIN(apdu, buffer);
             break;
        case insSetPin : 
             if(pin.isValidated()) 
               setPIN(apdu, buffer);
             else 
               ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);//6986
             break;
        case insDelog :
             pin.reset(); 
             break;     
        default:
             ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);//6986
        }    
      }
    
      private void credit(APDU apdu, byte[] buffer ) {
        
      }
      private void debit(APDU apdu, byte[] buffer ) {
     
      }
      private void getbal(APDU apdu, byte[] buffer) {
      
      }
    
      private void checkPIN(APDU apdu, byte[] buffer){
        short Le = apdu.setIncomingAndReceive();
        byte[] data = new byte[Le];
        try{
          for (short i=0; i<Le; i++)
          {
            data[i] = buffer[(short)(i+ISO7816.OFFSET_CDATA)];
          }
          if (pin.check(data, (short)0, (byte)Le)) return;
          else 
         ISOException.throwIt(ISO7816.SW_RECORD_NOT_FOUND);//6A83 //6985->SW_CONDITIONS_NOT_SATISFIED
        } catch(NullPointerException e) {
            ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED); //6982
        } catch(ArrayIndexOutOfBoundsException a) {
            ISOException.throwIt(ISO7816.SW_FILE_FULL); //6A84
        }
      }
    
      private void setPIN(APDU apdu, byte[] buffer){
    
      }
    }
    My problem is:
    -applet SELECT command is executed successfully
    - BUT the command check pin (80 00 00 04 01 02 03 04 B2) fails (which it should ask the cmdlet to execute the checkPIN method) fails with the error code 6983 (authentication) blocked

    Edited: it seems to me that even I remove control PIN for this application of electronic wallet for every shipment of order pay-per-view, I always get this status word: * 6983 *.

    In your experience, what reason causes the card to return this status word?

    Can't wait to hear from you
    Best regards
    JDL

    Jean-Damien LEVIEL wrote:
    if(buffer[0]!=CLA) ISOException.throwIt (ISO7816.SW_CLA_NOT_SUPPORTED);
    ISOException.throwIt (ISO7816.SW_FILE_INVALID);

    This always throws an exception.

    Adriaan

  • If I have a corrupted graphics drivers or absence of graphics hardware, how can I solve this problem?

    a virus can cause graphic drivers corrupted if yes, how can I solve this.  If lack of graphics hardware, how to replace it.

    Hello

    you already have another thread here all your screen problems

    read this about drivers

    try going to your graphic card manufacturers site or computer and are looking for the driver download section

    Search your computer or graphics card model number based on what you have and download and install the latest graphics drivers for vista

    for the problems of graphic material

    with a desktop computer, change the graphics card

    with a laptop computer, contact the manufacturer of the laptop

    For malware;

    Download update and scan with the free version of malwarebytes anti-malware

    http://www.Malwarebytes.org/MBAM.php

    You can also download and run rkill to stop the process of problem before you download and scan with malwarebytes

    http://www.bleepingcomputer.com/download/anti-virus/rkill

    If it does not remove the problem and or work correctly in normal mode do work above in safe mode with networking

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode with networking with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    _______________________________________________

    and here is a link to your other thread

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-system/i-believe-i-have-a-virus-on-my-computer-and-i-want/f76f1169-61ad-43DC-a07c-a2e80d4b1b51

  • Windows 8 games graphics problems with Ideapad Z575. Do not play games. :'(

    After you have installed Windows 8 and install all the drivers that I got from the site Web: Lenovo's laptop can no longer play any games. I have more option open of AMD Vision options or options "Switchable Graphics" as they do not appear in the menu when I right click on the desktop. I've updated the driver graphic via Lenovo website, but still cannot access any game. When I try to start a game, the game will display a white color screen with slight graphical artifacts. When I tried to start one of my games, "Killing Floor" it actually caused my cell phone restart.

    Anyone have similar problems with their Windows 8 pc or have a solution?

    Well, I finally found the problem. I discovered that the graphics driver that I had on the Lenovo site have actually NOT installed us. When I ran the Catalyst Install Manager, the Manager showed global progress bar, but it did not install anything. That was pretty weird.

    When I ran the driver Catalyst install listed in the Chinese link that was given to me in this thread.

    http://forums.Lenovo.com/T5/IdeaPad-Y-U-V-Z-and-P-series/is-it-safe-to-download-and-install-AMD-DRIV...

    It actually installed and now everything seems to work. I asked of Vision engine again, I can use switchable graphics and I just tested with Dark Souls prepare to Die Edition without any problem. The game is actually more smooth.

    Thanks again for the help.

  • Hi all, I am wanting to know how to solve this problem, I will have with my creative cloud downloads. I am trying to cancel the application Adobe DC and it download it again. But it's frozen on the "cancellation of...» "and don't move. I can't redownload

    Hi all, I am wanting to know how to solve this problem, I will have with my creative cloud downloads. I am trying to cancel the application Adobe Acrobat DC and it download it again. But it's frozen on the "cancellation of...» "and don't move. I use a mac, I can't redownload until it is gone from the top of the cloud. Can someone tell me if this has happened to them before and what I can do to remove it so I can redownload. Ive put a picture below so that you can understand what I mean.

    Screen Shot 2016-01-22 at 11.30.25 pm.png

    Hello

    Click the "Finder" on your dock to Open a Finder window. Click on 'Applications' in the side bar of the Finder window to see your Mac applications. In this folder, double-click the folder "utilities". Double-click the "Activity Monitor" icon to access the application.

    Now exit Adobe all associates of process as creative cloud, CC, CCX, Core sync, broker CIB Adobe and then launch creative cloud app again and try to download Acrobat.

  • Major problem with transparency using Flash Player 11 on IE 9 with Intel HD graphics card

    There are some problems with Flash Player 11,0,1,152 with Intel HD graphics card when using Internet Explorer 9 with hardware acceleration enabled.

    Transparencies are not working!

    They appear just like the black areas on the page when wmode = "transparent".

    See my bug for details, test URL and screenshots.

    I logged a bug:

    https://bugs.Adobe.com/jira/browse/ASC-4370

    I've also seen a few similar posts:

    http://forums.Adobe.com/message/3992938

    http://forums.Adobe.com/message/3992736

    http://forums.Adobe.com/message/3992735

    To work around this problem, you can disable hardware acceleration in the settings of IE9 to prevent this, but performance is terrible and this is not a solution.

    Can someone from Adobe please tell me when this is likely to be resolved - this is a pretty catestrophic bug!

    Everyone knows this?

    Thank you

    Luke

    Transparency bug has been fixed in 11.1.102.55 to today release so please check if your problem still exists or resolved. It is useful if you update result on above bugs.

  • Enable or disable hybrid graphics functio on Bios Dell Vostro 3500

    My laptop is a Dell vostro 3500 i5 - 460 m nvidia 310 m hybrid graphics system with BIOS A10 (bi - gpu nvidia/intel)...

    In the bios, the system show me only the nvidia 310 as graphics controller (to system information tab)

    On the Advanced tab, I have no option to disable this hybrid graphics technology (I have a Media Device Option? what are we doing?).. .but

    (http://support.dell.com/support/edocs/systems/Vos3500/en/SM/Bios.htm#Overview) online support documentation, it displays an option to deactivate and activate the hybrid chart that you can see below

    With this system hybrid I can only install drivers nvidia dell which is very old site, so I need the newest one of the nvidia site.

    On Linux, I can't not all Accelerator 3D even with sources at sky pilots open = \.

    My problem is: HOW can I DISABLE THIS GRAPHICS CARD INTEL?

    It is a feature of In-processor or an In mother board? Change the processor for one who did not have this chart on board leave my system with only Nvidia 310 for graphics?

    Reference Dell have plans save this characteristic show above, back in the next bios?
    It is possible (yes/no)? Please, I need this answer

    I am with you all.

    Dell should give us the option BIOS to decide what we want. The Nvidia hybrid or just graphics.

    I mean hey, this is a documented feature.

  • Graphic problem of mission control

    Hi, I have an early 2013 MacBook Pro retina runs El Capitan 10.11.6

    Launch of Mission Control, there is a graphic problem: miniature Office are all gray, as you can see in the screenshot.

    I already tried to quit smoking Dock in activity monitor and running "killall Dock" in the Terminal. Restart the system, the problem persists.

    Any ideas?

    Hello GalaxyWorker,

    Thank you for using communities of Apple Support. It is my understanding that when you use the Mission control the thumbnails are gray. I often use in Mission control, so I know not being able to see the thumbnail of the available screens can be useful. I'm happy to help you to get this resolved with you.

    You did a great job trying to fix this problem yourself. First, I recommend that you test the problem in safe mode. Boot in safe mode allows your Mac perform certain controls, delete the cache and prevent the opening and start-up items to open automatically. Follow the steps below to start in safe mode.

    1. Start or restart your Mac.
    2. As soon as you hear the startup tone, hold down the SHIFT key.
    3. Release the SHIFT key when you see the logo Apple appears on the screen.

    After the Apple logo appears, this may take longer than usual to reach the login screen or your office. This is because your Mac performs a check of directory of your drive to boot in safe mode.

    To leave safe mode, restart your computer without pressing any key during startup

    Try safe mode if your Mac does not end commissioning

    If the problem does not occur in safe mode, but returns when you restart normally, try to disable the login items using the link below.
    OS X El Capitan: If you think you have incompatible connection points

    If the problem occurred then in safe mode, it is possible the user settings or files are the cause. In this case, please try the issue in a new user by following the instructions in the following link.
    How to test a question in another account on your Mac.

    Have a fantastic day!

  • NB510 - graphics driver is not compatible with Windows 10

    Like many others, I now have the chance at a free upgrade for Windows (from the pre-installed Windows 7 Starter) 10. Unfortunately, the laptop has a custom graphics manufacturer driver and I can't find a new version of Intel® Graphics Media Accelerator 3650 anywhere.

    Is there anyone who can help me?

    Hello

    I NB520, and as far as I know, our machines are not supported for Win10, not even for Win8/8.1. so, I'm not sure that you will be able to find drivers for Win10.

    Furthermore, how it works with Win10 in general? Have you noticed a lot of problems and questions?

  • Graphics problems Tecra S1

    My S1 has graphic problems. There are horizontal and vertical smooth jerk on the LCD display and the same to the external display. Could you advise me please, how can I fix?

    I agree with Johnny. Seems to be a graphics card problem and this can be solved by the replacement of material.
    Johnny has already said, please contact the service partner in your country for assistance and additional handling!

    Good luck

  • Pavilion dv6 3131tx: play games with ATI card Windows 10 graphics card

    Hello

    I have a hp Pavilion dv6-3131tx with switchable graphics (HD Intel and AMD Mobility Radeon HD 5000 series card graphics card), and after the upgrade to Windows 10 all my games have been slow. I thought it was because of the HARD drive space I did a disk cleanup (including system files that I decided that I wasn't going back to Windows 7). After doing this, I decided to fiddle around with my chart (on two cards) options to maximize performance.

    However, now most of my games opened with the sound in the background, but it's a completely black screen. Looks like everything works well in the background (even the mouse pointer works and is in the shape of the pointer of the mouse of games) but it's just a full black screen. This seems to only happen with demanding games like a racing game or a sim as Sim truck or train sim. Other games such as spintires and miami hotline works very well. I could literally find nothing similar to this problem online and I really hope there is a fix for this!

    I have to mention also I tried to turn off my map graphics Intel HD in Device Manager when I was trying to figure out how I can make my ATI card my default card, because I'm sure that my games were run on the Intel card as they all seemed very slow compared to when I played on Windows 7. After that I disabled it my screen was almost entirely black, but I could just, just, what I did and managed to the reactivation of the card. This form almost entirely black happened also when I did the opposite.

    Update: it seems when I put these games to use the games I have (the Intel card) power saving trouble with work fine (less shift because she is able to save of course) so it's a problem with the ATI card.

    Thank you and I hope there is a fix for this

    Brendon

    Brendon95

    Also, I had a PC trashed by the upgrade of Win10 - because the upgrade tool does not detect the switchable graphics in advance and prevent the upgrade.  The good news is that MS has finally stopped by pushing people to do the upgrade of Win10.

    Ordinarily, I advise to use HP recovery media to restore your PC to its original state. That would erase the entire disk, format the drive and install the operating system, drivers and utilities HP.

    Unfortunately, there is no support of HP recovery related to HP for your PC Product Page. This could be an oversight by HP, or it could also mean that HP stock is no longer the recovery media for your PC. They store any long recovery media for older PCs.

    You can try to contact the HP customer directly, using the links below, to see if you can order them if:

    If you live in the United States or the Canada, details are on this page: http://www8.hp.com/us/en/contact-hp/phone-assist.html#section1

    If you live elsewhere, contact details are on this page: http://www8.hp.com/us/en/contact-hp/ww-contact-us.html

    NOTE: once you get through, stay on the line until you are finally able to talk to someone ' one - it can take a while!

    ---------------------------------------
    However, HP customer care is generally not available on weekends, so you will have to wait until Monday to contact them.
    ---------------------------------------

    Given that HP no longer provides a recovery media for your model, a few other sites, you should check are: http://www.computersurgeons.com/ and http://www.restoredisks.com/

    Good luck

  • graphic problem double y510p

    Hello.

    I have two graphics cards:

    -integrated: intel graphics HD 4600

    -dedicated: nvidia geforce gt 750 m

    I recently reinstalled sytem and tried to pass windows 10. I know that pilots are not compatible, so I reinstalled windows 8.1, installed latest graphics, directx drivers, located in the nvidia Control Panel to use 'map high performance', use the power plan high performance (I've heard problem with pci)

    Result: Graphic works as if I had only intragrated GPU (albeit apllication properly sees my dedicated graphics card).

    So I tried to reinstall the graphics drivers, pending reainstall .net framework (problem with nvidia expierience), try to correct the .net framework, run lenovo Solution Center, run Update utility intel driver (to get the latest drivers), etc.

    Result: nvidia expierience works fine, the graphics performance * beep * ty again.

    I did the pc format as 10 times, tried to uninstall the graphics cards, turn off the graphics cards and define the drivers from 0. I have run out of ideas what to do. I am sure that there is nothing to update, and I know that he should have worked as by chance it worked for me once. But I had to reinstall pc because to achieve this (standard procedure wired reinstall drivers GPU), windows threw an error and from time to time it froze just... so I did format c, reinstall everything and sh * t is real, once again.

    DOE anyone know what is the root cause of the problem, how to solve this problem, it meets on other systems (win 7, win 8)?

    Wow. After two weeks, I finnally was able to cope with this. I resigned, but yes I did. So if someone has never a problem like that the solution was to deal with the BIOS.

    I guess I have a problem with the BIOS (I have reflashed it and actually the installer said that accused had failed). In the near future I bet I need to replace it. But still, flashing with the new software + restore default values somehow made (even if everything has been set correctly and the same as after restoring default - affecting the most important graphic cards have been set correctly).

    in any case I happy to deal with this problem. I hope this help if someone has similar problems.

Maybe you are looking for

  • My destop all icons are colored and when I try to make crystal or visible, I can't change

    My destop all icons are colored and when I try to make it transparent or visible, I can't change

  • Audio input T510

    Hello I just bought a T510 and wanted to set up my Ventrilo Client, I recognized that I have just an audio output on the right side of the laptop. Is there an audio input for my microphone and where can I find it? I hope you can help me Best regards

  • Still awaiting aid - blue file $Uninstall$

    This problem started the 25th with the inability to define the Access Manager which I am incapable of difficulty due to the problem of $ Windows folder blue $Uninstall - are both the current posts awaiting response. This problem becomes more serious

  • Error in build Simulator target

    I'm new to BB 10 Web work 2, while trying to debug via Simulator, I get the following log? [INFO] The application of filling source[INFO] The analysis of config.xml[INFO] Generation of output files[WARNING] Cannot find the debugging token. If you hav

  • Need help do two options available for customers to choose

    I have two options for a customer to choose and I need to be able to choose option 1 with a checkbox and initials or option 2 with a checkbox and original but at the moment it allows the customer to check both areas on the two original boxes and so a