GT70 2OC iCharger BIOS setting (S0, S1, S2...) doesn't work?

I enabled the iCharger setting to support charging in the various S states (sleeping, powered off, etc) and it doesn't seem to work. When I connect an iPhone or any other device that charges via USB, the charging happens normally as long as the computer is awake and the lid is open. But the moment I close the lid, putting the computer to sleep, or power it off, the USB-connected device immediately stops charging.

1. I guess so.
2. I am not sure but according to MSI, you better not to cross flash EC firmware to prevent from uncertain damage.
3. No.

Similar Messages

  • Had problem with my hotmail account and had to change my password. Ever since then, my default e-mail account set up to hotmail doesn't work...it sends from gmail. How can I correct that?

    Had problem with my hotmail account and had to change my password. Ever since then, my default e-mail account set up to hotmail doesn't work...it sends from gmail. How can I correct that?

    On your iPhone you need to change your password in 2 places:
    - Incoming Mail Server and
    - Outgoing Mail Server
    To get to the password entry for the Outgoing Mail Server you have to tap on cell smtp.live.com and again on the second view.

  • Setting Header in response doesn't work !!

    Hi everyone,
    I want to set header in response to a request but it doesn't work :
    response.addHeader("WSC_RESPONSE", "STRUTS_ERROR");
    System.out.println(response.containsHeader("WSC_RESPONSE"));
    response.setHeader("WSC_RESPONSE", "STRUTS_ERROR");
    System.out.println(response.containsHeader("WSC_RESPONSE"));
    this print me :
    false
    false
    thanks in advance for help

    I can't do this because I'm putting those lines in an action who was caled by another action wich fill the response in.
    private ActionForward doDispatchMethod(ActionMapping mapping,
                                               ActionForm form,
                                               HttpServletRequest request,
                                               HttpServletResponse response,
                                               String methodName)
                                        throws IOException
                Method method = getMethod(methodName);
                Object[] args = { mapping, form, request, response };
                fwd = (ActionForward) method.invoke(this, args);
            if (request.getAttribute(ERROR_KEY)!=null)
                 response.reset();
                 response.addHeader("WSC_RESPONSE", "STRUTS_ERROR");
                 System.out.println(response.containsHeader("WSC_RESPONSE"));
                 response.setHeader("WSC_RESPONSE", "STRUTS_ERROR");
                 System.out.println(response.containsHeader("WSC_RESPONSE"));
            else
                 response.reset();
                 response.addHeader("WSC_RESPONSE", "OK");
                 System.out.println(response.containsHeader("WSC_RESPONSE"));
                 response.setHeader("WSC_RESPONSE", "OK");
                 System.out.println(response.containsHeader("WSC_RESPONSE"));
            return fwd;
        }

  • JTextField - Setting the column size doesn't work. Help, please.

    Hi,
    I want to set the column size of a text field from another text field by the input from the user. However, it just doesn't work. The following is my code. Just check out the last anonymous inner class action listener. Somehow i can get the user text, but it just doesn't work.
    Thanks for any helpful inputs.
    * Introduction to Java Programming: Comprehensive, 6th Ed.
    * Excercise 15.11 - Demonstrating JTextField properties, dynamically.
    * @Kaka Kaka
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.Border;
    import javax.swing.border.LineBorder;
    import javax.swing.border.TitledBorder;
    public class Ex15_11 extends JFrame{
        // Create two text fields and three radio buttons
        private JTextField jtfUserText = new JTextField(10);
        private JTextField jtfColumnSize = new JTextField(new Integer(10));
        private JRadioButton jrbLeft = new JRadioButton("Left");
        private JRadioButton jrbCenter = new JRadioButton("Center");
        private JRadioButton jrbRight = new JRadioButton("Right");
        public static void main(String[] args){
            Ex15_11 frame = new Ex15_11();
            frame.pack();
            frame.setTitle("Excercise 15.11 - Text Field Property");
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        // Start of Constructor
        public Ex15_11(){
            // Set the the frame layout
            setLayout(new BorderLayout(5, 5));
            // Create three panels and two labels
            JPanel jpText = new JPanel();
            JPanel jpHorizontalAlignment = new JPanel();
            JPanel jpColumn = new JPanel();
            JLabel jlblTextField = new JLabel("Text Field");
            JLabel jlblColumn = new JLabel("Column Size");
            // Create a button group for the radio buttons to be grouped
            ButtonGroup group = new ButtonGroup();
            // Group the radio buttons
            group.add(jrbLeft);
            group.add(jrbCenter);
            group.add(jrbRight);
            // set a titled border for a panel
            jpHorizontalAlignment.setBorder(new TitledBorder("Horizontal Alignment"));
            // Create a line border
            Border lineBorder = new LineBorder(Color.BLACK, 1);
            // the all the components to their corresponding panels
            jpText.add(jlblTextField);
            jpText.add(jtfUserText);
            jpHorizontalAlignment.add(jrbLeft);
            jpHorizontalAlignment.add(jrbCenter);
            jpHorizontalAlignment.add(jrbRight);
            jpColumn.setBorder(lineBorder);
            jpColumn.add(jlblColumn);
            jpColumn.add(jtfColumnSize);
            // add the panels to the frame
            add(jpText, BorderLayout.NORTH);
            add(jpHorizontalAlignment, BorderLayout.WEST);
            add(jpColumn, BorderLayout.EAST);
            jrbLeft.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    jtfUserText.setHorizontalAlignment(SwingConstants.LEFT);
            jrbCenter.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    jtfUserText.setHorizontalAlignment(SwingConstants.CENTER);
            jrbRight.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    jtfUserText.setHorizontalAlignment(SwingConstants.RIGHT);
            // Register the listener for the coloum size
            jtfColumnSize.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    System.out.println(Integer.parseInt(jtfColumnSize.getText()));
                    jtfUserText.setColumns(Integer.parseInt(jtfColumnSize.getText()));
    }Edited by: ChangBroot on Dec 16, 2008 6:13 PM

    don't forget to revalidate the JPanel after changing the components it holds:
        jtfColumnSize.addActionListener(new ActionListener()
          // Handle event
          public void actionPerformed(ActionEvent e)
            System.out.println(Integer.parseInt(jtfColumnSize.getText()));
            jtfUserText.setColumns(Integer.parseInt(jtfColumnSize.getText()));
            jpText.revalidate();
        });This will tell the jpText JPanel's layout manager to relayout the components that this JPanel holds. It should resize your JTextField. Note that in order to call this from within the anonymous inner ActionListener jpText will need to be declared "final". Either that or declared as a class field.

  • After BIOS update my Equium L40 doesn't work anymore!

    Hi friends...
    Please, I need a help.
    I updated my laptop bios v1.60 to v2.00 and after that it doesn't work anymore.
    When I try to power it on nothing happens.
    Maybe I need original BIOS.
    Who has some solution? What can I do?
    Could someone help me?
    Thanks!
    My laptop is an Equium L40 series - PSL49E - 156

    Hi
    I can say what you have to do now
    You have to contact the ASP in your country for a help
    Yes, you need the ASP technician.
    I assume the ROM module where the BIOS is stored has not been flashed correctly.
    I think the ASP will try to flash it again using an special BIOS version
    Good luck

  • GT70-2OC Unlocked Bios

    Hi, Is possible to unlock bios 51B for 2OC? I have editet bios, but I can't flash it 'cause It's signed. Can you help me please? Thanks for response.

    Quote from: jbiel on Today at 00:48:45Moving the GPU may have created this as default.
    Hi,
    Yes I have tried changing the default output to "Speakers", however, the option is not allowed, as my PC thinks t...

  • Re: MSI GT70 2OC unlock bios request

    check PM for queries

    Yes i've just double checked on google and saw the same image you sent. Thanks!
    I've just tried to reseat the CPU, look out for any bent pins which were not present, tried with a different GPU, and everything is still the same.... I'm quite desperate now

  • How can I remove print margins when manually setting them to zero doesn't work?

    I'm trying to print a web page that I've created with a custom paper size of 4.5x10.25 inches. I want the page to be printed right to the edge of the paper, with no margins at all.
    I've been reading for a few days and the best thing I can find is to use Mac's Page Setup dialog to create a custom paper size and custom margins, which I've done and set to the default for all of my printers. (Hopefully I'm able to post links to images --> http://i.imgur.com/kVbOZLk.png). No matter what I do though I can't get the margins to go away. There's always always always a .75 inch margin when I print and when I print preview (Again, hoping I can post links to images --> http://i.imgur.com/cxlVS8o.png). Just to note: The same thing happens printing other websites and documents (i.e it is not a problem with my website).
    Things I've tried:
    I've read that the margins are only visible in print preview and printing the page will remove them. This didn't work.
    I've tried tricking the system by setting my margins to 0.01 inches
    I've tried adjusting the website to not be exactly the size of the page (I made it smaller) and the margins were still there.
    I've set "print.print_extra_margin" to 0 in Firefox's about:config page.
    I've tried a different printer.
    I've tried a co-worker's machine running a newer version of OSX.
    I've made absolutely sure that my page size it set correctly.
    I'm using OSX 10.6.8 with Firefox v21.0.
    The closest I can come to this is using Google Chrome, where there is a specific option for "none" in margins and the Chrome preview looks okay, but I'm not able to specify paper size unless I click "Print using system dialog" which gives me the same problems as above.
    How do I remove the margins and just fit to the exact size of the page?

    Welcome to Apple Support Communities. We're all users here.
    Does your Print dialog offer photo 'borderless printing' settings for various paper sizes?
    Every photo printer I've ever encountered leaves some unprintable margin, unless 'borderless' and/or 'photo' media are specifically selected.
    On many of the Canon inkjet color printers I've used, borderless printing is only available when one of the photo papers is selected, even when a custom size specified that is smaller than the actual paper, trying to make it 'borderless'
    I stitch together and print panoramas of theatre sets for my local community theater, so I end up with an image about 4.5 inches by 11.5 inches to be printed.
    Selecting a photo and opening in Preview and selecting 'Fill Entire Paper' illustrates the standard unprintable borders for my specific printer.
    When I open the panoramic image in Preview, I get this print preview. (The set image is of course rotated left)
    By selecting Letter and Borderless in the Paper Size dialog for my Canon MG5320 printer, I get this result.
    This particular Canon printer of course does NOT actually 'know' what paper is inserted, but the ink is applied assuming that a photo paper is being used, so it will saturate a standard paper.
    Hope this helps!
    Message was edited by: kostby

  • Set Time Zone automatically doesn't work?

    Just returned from a trip to Greece (back home now in Phoenix). Noticed that even connected to wifi in different locations, when "set time zone automatically" was clicked on in general settings, time displayed on iPad seemed stuck in EST. (I made a stop in Philly on way to trip, not sure if that has to do with anything.)
    If i click "set time zone automatically" to off, for some reason my iPad defaults to Washington DC, even though in all my calendar/email settings i have Phoenix set as local time zone. I can change Washington DC to Phoenix and correct time displays on iPad. Just wondering why i can't set it automatically to display correct local time?
    Thanks for any suggestions....

    Ok thanks. Yeah, I ended up using the World Clocks.
    Where it gets interested is, iCal. If you're in a foreign country that's, say, 4 hours ahead, and you add iCal entries to your Calendar while you're out there, should those entries reflect the local time or the home time?
    Also, if you're set the Alarm to wake you up at 8:00am, and you're away on holiday, surely it will go off at home time, not local time, thus going off at the WRONG time.

  • Setting environment variables remotely doesn't work for Windows 7

    Hi,
    $RemoteMachineList = 'machA', 'machB'
    $session = New-PSSession $RemoteMachineList
    Invoke-Command -Session $session {[Environment]::SetEnvironmentVariable("Role",0,"Machine")}
    The above is the code snippet which I've tried for setting a machine level environment variable. After executing this code in a collection of XP and Windows 7 machines, when I go and check the advanced settings->system environment variables, I can see
    the new entry "Role" in all the machines. But unfortunately, this env variables actually gets set only in XP machines(I did a set command from a cmd prompt/or an echo command) whereas in Windows 7 machines, this doesn't exists even though it
    shows up in the advanced settings->system environment variables.
    Tried in several machines, only Windows XP is yielding the required result.
    Please help. 
    Thanks in advance ! 
    -Aravind

    Thanks Chen, but still the same result. 
    I'll narrow down the scenario(actually two scenarios) as per the way it's behaving on Windows 7 machines.
    Case - 1
    1. I do a SetEnvironmentVariable remotely.
    2. I go to that remote machine and search in advanced settings -> system env variables window. Dont click on the OK Button.  Close these windows.
    Result: Yes it is there as an entry.
    3. I open up a command prompt and type 'set'
    Result: No it is not set.
    4. Again open up advanced settings -> system env variables window. Click on the OK Button.  Close these windows.
    5. Now open up a command prompt window and type 'set'
    Result: It is set now
    Case 2:
    1. I do a SetEnvironmentVariable remotely.
    2. I go to that remote machine and search in advanced settings -> system env variables window. Dont click on the OK Button.  Close these windows.
    Result: Yes it is there as an entry.
    3. I open up a command prompt and type 'set'
    Result: No it is not set.
    4. I do a system restart.
    5. Open up a command prompt and type 'set'
    Result: It is set now
    Any idea why this is behaving like this(more or less like setting a user level env variable), please  ? I've to some way get through this obstacle to advance further. Thanks a lot for the support

  • "Set Locators by Regions" doesn't work

    Hi all --
    When I select "Set Locators by Regions" from the menu, or via a keyboard shortcut, nothing happens. It worked fine until last week.
    Any idea how to fix this?
    -- Matt

    It may be obscured by another KC

  • Creating a gradient then setting transparency to lighten doesn't work

    Hi folks, i'm trying to create a gradient overlay that is set to 'lighten' in the transparency palette but for some reason it creates a total white result?
    To, visually at any rate, get the desired effect the only setting that seems to work is overlay but that's not what i want really.
    It seems to work fine with 'multiply' the gradient's dark area multiply the background object.
    Any ideas??
    Thanks

    Really? I got 16 hits. Here's the 2nd:
    To create opacity masks
    To create a mask from an existing object, select at least two objects or groups, and choose Make Opacity Mask from the Transparency palette menu. The topmost selected object or group is used as the mask.
    To create an empty mask, select a single object or group, or target a layer in the Layers palette. Then double-click directly to the right of the thumbnail in the Transparency palette. If the thumbnail isnt visible, choose Show Thumbnails from the palette menu. An empty mask is created and Illustrator automatically enters mask-editing mode. Use the drawing tools to draw a mask shape. Click the artwork thumbnail (left thumbnail) in the Transparency palette to exit mask-editing mode.
    Note: The Clip option sets the mask background to black. Therefore, black objects, such as black type, used to create an opacity mask with the Clip option selected will not be visible. To see the objects, use a different color or deselect the Clip option.

  • Setting ALV Header text doesn't work

    I'm trying to set different titles on my headers of the ALV table. To do this I do the following during the WDDOINIT of the COMPONENTCONTROLLER.
      CALL METHOD WD_THIS->GO_ALV_EINSTELL->IF_SALV_WD_COLUMN_SETTINGS~GET_COLUMNS
        RECEIVING
          VALUE  = lt_columns
      LOOP AT lt_columns INTO ls_column.
        CASE ls_column-ID.
          WHEN 'SETTING_ID'.
            CALL METHOD LS_COLUMN-R_COLUMN->SET_FIXED_POSITION
               EXPORTING
                 VALUE  = CL_WD_ABSTR_TABLE_COLUMN=>E_FIXED_POSITION-LEFT
            CALL METHOD LS_COLUMN-R_COLUMN->SET_POSITION
              EXPORTING
                VALUE  = '2'
            CALL METHOD LS_COLUMN-R_COLUMN->GET_HEADER
              RECEIVING
                VALUE  = lo_header
            IF NOT ( lo_header IS BOUND ).
              CALL METHOD LS_COLUMN-R_COLUMN->CREATE_HEADER
                RECEIVING
                  VALUE  = lo_header
            ENDIF.
            CALL METHOD LO_HEADER->SET_TEXT
              EXPORTING
                VALUE  = 'Einstellung'
          WHEN 'EVENT_TYPE'.
        ENDCASE.
      ENDLOOP.
    The debugger shows me that the different titles are updated but when it gets displayed I see the old DDIC titles. Any ideas on how to fix this?

    I hope you want to change the name of ALV column in the display.
    Try following code for the same:
      DATA: l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table .
      l_ref_interfacecontroller =   wd_this->wd_cpifc_alv_table( ). " Value from the prop tab of the view
      DATA: l_value TYPE REF TO cl_salv_wd_config_table.
      l_value = l_ref_interfacecontroller->get_model( ).
      DATA l_column TYPE REF TO cl_salv_wd_column.
      DATA l_header TYPE REF TO cl_salv_wd_column_header.
      l_column = l_value->if_salv_wd_column_settings~get_column( 'MATNR' ). " Name of column you want to change
      l_header = l_column->get_header( ).
      l_header->set_ddic_binding_field( ).
      l_header->set_text( `Material Nuber` ).  " Name that is to be displayed
    Regards,
    Saket.
    Edited by: Saket  Abhyankar on Jan 13, 2010 3:32 PM
    Edited by: Saket  Abhyankar on Jan 13, 2010 3:48 PM

  • Request unlock BIOS MS-1763 or GT70 2OC with Version E1763IMT.509

    Hello,
    I'd like to donate for the following request: unlock BIOS MS-1763/GT70 2OC, having Bios Version E1763IMT.509
    My goal is to change my grafics card from actual GTX 770M to GTX 970M.
    I'm not that pro to know if the GTX 970M config will be done with the following steps ?? - plz help:
    1.) change/install card, or after point 5.) ??
    2.) Flah BIOS - requesting help here
    3.) Disable onboard HD audio and graphic card
    4.) Disable IDT GPU in BIOS advanced settings ?? will it be possible with flashed bios
    5.) Change display model from SG to PDG via BIOS
    6.) download from laptopvideo2go.com .... driver v 353.00 and mod INF.file for GTX 970M Wind 8.1 (64). - install.
    My other Specs:
    CPU i7 4700MQ
    Nvidia GTX 770M -- change to GTX 970M 6GB
    Wind 8.1 (64)

    unlocking bios has no connection with GPU support.
    unlocking bios will not give you addiction GPU support
    Quote
    MS-1763/GT70 2OC, having Bios Version E1763IMT.509
    My goal is to change my grafics card from actual GTX 770M to GTX 970M.
    for this model it should works as is, without special things to be done.
    for 1763 model 980M works fine:
    http://forum.notebookreview.com/threads/the-official-msi-gt60-70-970m-980m-upgrade-thread.765058/
    Quote
    1.) change/install card, or after point 5.) ??
    2.) Flah BIOS - requesting help here
    3.) Disable onboard HD audio and graphic card
    4.) Disable IDT GPU in BIOS advanced settings ?? will it be possible with flashed bios
    5.) Change display model from SG to PDG via BIOS
    6.) download from laptopvideo2go.com .... driver v 353.00 and mod INF.file for GTX 970M Wind 8.1 (64). - install.
    just install the new card and see if its works, you may need to install a modded inf [maybe not]
    about bios update it should be not required,
    but if by chance is need we can discuss this eventually later.
    else bios can be also unlocked, but this has no connection with GPU support

  • Nan not open bios set up

    Hi,
    when i presses f2 for boot menu or f12 for setup my lap dont open bios and directly starts windows.
    i bought my lap top 10 months before it was brand new and had total 12 months warranty total. 
    any body who can guide me that either lenovo claim bios or not?
    and my laptop battery timing is decreasing day by day tell me plz that lenovo claims battery or not?
    i have 2 months left warranty.
    thanks in advance.
    Solved!
    Go to Solution.

    hi aneeqazam92,
    I see that IPnaSh is already helping you out. In addition, have you tried holding the F2 key after pressing the power button to access the BIOS? Sometimes tapping F2 doesn't work and you need to hold it for a few seconds.
    Regarding the battery, if you're getting less hours than it was used to be when it was brand new (i.e. you're getting 4-5hrs before but now only 30mins-1hr) then there's a big possibility that the battery cells has already worn out (this will continue to deplete until the battery is totally dead - this usually happens over time if the computer is used more than 10hrs a day). For the replacement of the battery, you need to call lenovo for service. Support phone list here.
    Hope this helps.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for

  • I can't update my iPad 1 from a downloaded iOS 5 download

    I own an iPad 1 running on OS 4.3. I have been trying to update directly fromiTunes without luck because the downloadlink breaks up during the update as aresult of internet instability. I thereafter downloaded the file " iPad1,1_5.0_9A334_Restore.ips

  • Photoshop CS 5.1 crashes when opening jpg files

    I installed both the Photoshop CS 5.1 for 64 and 32 bit...I opent the 64 bit Photoshop to edit a jpg file, but when I import it or drag and drop it into the Photoshop interface, Photoshop dies , and stops working and shuts down every time I do this. 

  • Ms-7510 restart issue

    Hi, I have a P7n diamond that restarts randomly, normally after I have login to windows. This is a old m/b but quite good... useful... have alot of hdd's that I need to access... :-p I have been checking it don't really know whats wrong with it... Cu

  • Galaxy Nexus will not Roam

    Hi All, I live in Kansas where in a lot of places service can be poor or not existent. While visiting my family and my girlfriends family over Christmas, who live in two different areas in Southeast Kansas, where both phone and 4g/3g/1x data signal d

  • Preview images slow to load in Finder

    I've just upgraded from 10.2.8 to 10.4.6 and I'm having a bothersome issue with the preview images in Finder loading very slowly. This is most noticable with large high res Photoshop files. Why is this happening and is there a fix? Thanks in advance