T450s startup takes 35 seconds before showing splash screen. (11 sec wake-up)

The follwing are my problems:1. When starting up the machine, it takes about 35 seconds before the first screen activity appears (Lenovo splash screen). After that it boots quite normal.
2. When waking out of sleep mode it takes 11 seconds before I see the power led stopping to "breath" and the screen wakes up.
It feels like this is a hardware/bios related issue, as (so far I know) hdd/ssd is only accessed after the bios has loaded and has finished its hardware checks. When sticking in a bootable usb it only starts flickering after the bios had loaded on screen.
Question:
Does anyone has an idea why my laptop is waiting so long to boot or to wake up? I don't mind waiting a bit, but waiting for 35 seconds + the normal boot time is really annoying. Specially with the fact that the laptop doesn't show any sign of live for 35 seconds after briefly lighting up the keyboard backlights. The wake-up delay is also very annoying since even my 7 year old BSOD laptop wakes-up faster, and I'm using sleep mode a lot.
Some origins that I'm thinking about:
- Hardware check during initial hardware startup does not yet recognize a dedicated GPU card. (POST: Power On Self Test)
- I don't think this is a problem with my software since the problems occurs before reading any media.
Things I tryed already:
- Reset bios.
- Start in legacy mode.
- Bios update
- rebuilding MBR (although I don't expect this to be the problem.)
- Refreshing windows installation although I don't expect this to be the problem.)
This problem was already at the beginning (with origenal hardware):
From the first time I started the laptop (so even with the HDD) I noticed it took quite long to start. I remember pressing the ON/OFF button multiple times and thinking I did something wrong, when suddenly the "Lenovo" splash screen appeared.
I hope someone can help me!

My problems have been solved! An engineer contacted me that they have recieved a spare mainboard and they wanted to make an appointment. I gave them the adress where I worked the next day since I'm very mobile, and the next day an engineer came by. He seemed like a skilled IBM engineer and tested my machine and came to the same conclusion as me. He then did a few tests to see if the problem was caused by something else then the mainboard but ended by replacing my mainboard with good care. After the replacement the the boot and wake-up time was normal like it should be. I'm very pleased by the service Lenovo ThinkPad has given me. I need to add that when I called for support I got someone on the line that could not really understand me, neighter dutch or english. But that was also duo a bad connection it seemed.. But after that call I did not really expect this would come to a good end. I was then really suppriced that 5 day's later a dutch engineer manager called me to make a appointment. 

Similar Messages

  • Show splash screen for x amount of seconds

    Is there a better way to show a splash screen for x seconds than putting it in a while loop? It just seems so inefficiant and it uses a lot of processing power. This is what I have: long startTime = System.currentTimeMillis();
    while(System.getCurrentTimeMillis() <= startTime + 5000) {
        //wait
    mainPage.setVisible(true);

    javax.swing.Timer.
    Also:
    http://java.sun.com/javase/6/docs/api/java/awt/SplashS
    creen.htmlThank you, I knew there had to be a better way.

  • Showing splash screen while loading...

    Hi,
    I'd like to show a splash screen while the application is loading (setting up hibernate session etc.) - here is my main method which is loading hibernate and starting up the application:
            public static void main(String[] args) {
              java.awt.EventQueue.invokeLater(new Runnable() {
                   public void run() {
                        MdbCheckerApp app = new MdbCheckerApp();
                        app.initializeLookAndFeel();
                        // preload Hibernate session
                        HibernateUtil.getSession();
                        // login successful
                        // if (app.login()) {
                        new MdbChecker().setVisible(true);
              HibernateUtil.closeSession();
         }How do I show my splash screen while simultaneously loading the hibernate session?
    Thanks in advance
    - Stephan

    However, I'm not quite sure on how to proceed...
        public static void main(String args[]) {
            final TestForm tf = new TestForm();
            tf.showSplash();
            tf.runInitializer(new Runnable() {
                public void run() {
                    try {
                        Thread.currentThread().sleep(3000);
                    } catch (Exception e) {}
                    tf.hideSplash();
        public void runInitializer(Runnable r) {
            Thread t = new Thread(r);
            t.start();
        public SplashScreen showSplash() {
            // if a splash window was already created...
            if(splash != null) {
                // if it's showing, leave it; else null it
                if(splash.isShowing()) {
                    return splash;
                } else {
                    splash = null;
            splash = new SplashScreen(null, true);
            centerComponent(splash);
            splash.show();
            return splash;
        public void hideSplash() {
            if (splash != null) {
                splash.dispose();
                splash = null;
        }I'm wondering why I do only see the splash screen (I was hoping that the splash screen would be disappearing after 3 seconds).
    Here is the code of my splash screen:
    public class SplashScreen extends javax.swing.JDialog {
        /** Creates new form SplashScreen */
        public SplashScreen(java.awt.Frame parent, boolean modal) {
            super(parent, modal);
            initComponents();
            setLocationRelativeTo(null);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            jLabel1 = new javax.swing.JLabel();
            jProgressBar1 = new javax.swing.JProgressBar();
            setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
            setTitle(java.util.ResourceBundle.getBundle("com/gigatronik/mdbchecker/ui/bundle/MdbCheckerMessages").getString("splashscreen.title"));
            setModal(true);
            setUndecorated(true);
            jPanel1.setBorder(javax.swing.BorderFactory.createEtchedBorder());
            jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/gigatronik/mdbchecker/ui/resources/gigatronik_4c_300.jpg")));
            jProgressBar1.setIndeterminate(true);
            org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING, false)
                        .add(org.jdesktop.layout.GroupLayout.LEADING, jProgressBar1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .add(org.jdesktop.layout.GroupLayout.LEADING, jLabel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jLabel1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jProgressBar1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new SplashScreen(new javax.swing.JFrame(), true).setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JLabel jLabel1;
        private javax.swing.JPanel jPanel1;
        private javax.swing.JProgressBar jProgressBar1;
        // End of variables declaration                  
    }Any help would be greatly appreciated.
    - Stephan

  • My app only shows splash screen...

    Hello,
    my application only shows the splash screen and then,,, nothing....
    my app: [http://freiheit.hostse.com/sir.html]
    I've already googled and I didn't find anything :(
    Thanks for your help in advance

    Hi,
    Can you please tell me what was the exact problem area. I am facing same problem with my application. I can run this application successfullly on other machines but on my machine not able to get screen.

  • On startup MacBook pro 2008 shows white screen, makes 3 clicking noises, then light at front flashes 3 times at intervals. Help?

    On startup a blank white screen shows after startup tone and followed by 3 clicks from the speakers. The light at the front of the computer then flashes 3 times at intervals. Startup doesn't progress past this point. I've attempted to put it into safe mode but no luck. Any help?

    Hard drive failure.

  • K7T Turbo2, doesn´t show splash screen

    I´ve a problem with my K7T Turbo2, when the computer starts up, it doesn´t show me the MSI logo and it´s Enabled in the BIOS, if i disable it, the same... nothing happens. It´s strange a friend of mine has the same problem with the same Motherboard.
    Please, need any help.
    Thanks

    I agree.
    I think that if the board says it supports the fullscreen logo then it should when purchased.
    Mine doesn't show the fullscreen logo either- I think that while it may sound trivial it is worth looking into because if a small feature like that doesn't work then I can suspect that the board is in fact at fault with my high idle temps of 55 degrees Celcius, (60 degrees loaded)
    The heatsink/fan allowed 42 Degrees idle and 48 degrees loaded on my  MSI 6378 PCB 1.0. Swapping the chip again gave consistent results. The paste is generic but it was the same on the 6378 anyway so that is not the problem. The system is stable for now but I worry about the long term effect.
    And if the boot logo has a bug then maybe they really didnt implement the power savings correct either - viewing it as trivial since those temps are still within AMD's spec.
    I know this is just a value setup but afterall Im still a student - Elec. Eng. and craftiness at this level disgusts  so dont say why do I want my logo - Market segmentation is about less features for lowend not less quality (especially in something like a computer - data is involved). I had endless woes with my 6378 (crashing disk, screeching sound ) - imagine risking the PCB 3.0 Bios actually fixed a screeching sound issue. Go figure - MSI said that bios was not for PCB ver 1.0 and logic told me to go ahead anyway higher version usually means better code. (Of course I rationalised that mostlikely the new PCB mods were slight if only to take on the XP CPU's)
    Long and short - The logo thing should be investigated especially if consistently wrong on others systems. Success in little things do add to consumer impression of a company. Dont brush this off.
    My Cheap Components
    MSI K7T Turbo2 Ver 5          Bios 3.6
    Athlon 1.2 Ghz 100 FSB
    2 x 128 Kingston cas 3 memory
    XFX Geforce2 MX400 64 MB SM56 PCI Soft modem
    40 GB WD
    40 GB Seagate                    Norcent 32x10x40 CDRW
    Afreey 10X DVD

  • Thunderbird automatically upgraded to version 24.6.0. Now, when you start it, the program freezes for about 15 seconds before showing mails, etc.

    Annoying that the default option is to automatically upgrade, and this automatic upgrade then makes the program 10x worse.

    Thanks for everyone's help, btw. Hopefully this will help others who encounter a similar problem.

  • Muse CC startup takes too long (up to 35 seconds)

    For some reason, Muse CC takes too long to launch: up to 35 seconds. The splash screen stays up for that long until the program actually starts.
    Photoshop CC, with several plug-ins and presets, takes only 3 seconds. My previous Muse versions launched a lot faster.
    I'm on Windows 7, 64 bit. Any recommendations on this? Anybody else experiencing this issue?

    Please try to clear Muse's preferences/cache as detailed in the following article and see if that helps.
    http://forums.adobe.com/message/5086018#5086018
    Thanks,
    Vinayak

  • Dreamweaver4 Hangs at Splash Screen on First Use

    I recently moved to a new computer with 10 terabytes of hard
    drive space and 4 gigs of ram running winXP2 w/sp2.
    The computer itself is a generic HP Workstation XW4200 with
    an old ATI FireGL graphics card - fairly vanilla.
    I installed Dreamweaver4 (yes, DW4 is old but I know it's
    quirks and limitations well and
    I got the "educational version" free at school so call me
    cheap, but anyway..)
    then tried to start it up for the first time.
    Just past the registration screen it hung at the splash
    screen for a loooooooooooooooonnng time (over 15 minutes) and I
    figured it was permanently locked up so I shut it down, rebooted,
    and tried again with the same result.
    I uninstalled and re-installed the program, same result.
    I figured maybe something in Windows was conflicting so I
    took an hour to do a reinstall of a totally clean version of winxp
    sp2 (with nothing else installed).
    After installing Dreamweaver 4 for the third time it still
    hung indefinitely.
    Finally I started googling around and found an obscure
    reference on a Linux forum about installing DW4 under wine and
    having it hang on initial startup while scanning all drives and/or
    looking for Internet Explorer.
    So I booted up WinXP in Safe Mode, and set the compatibility
    properties to run in Win98 compatibility mode, and tried starting
    up dreamweaver.exe yet again.
    The cursor goes into hourglass mode for 10 seconds as the
    splash screen is displayed, then returns to a normal cursor except
    when passing directly over the splashscreen.
    Out of curiosity I started a small notepad window and dragged
    it momentarily in front of the dreamweaver splash screen window and
    when I moved it outside the splash screen window the image of the
    notepad window remained --meaning the splash screen was too busy
    doing something else to allow a window refresh.
    This lead me to focus on a very busily flashing led light
    signaling activity for my hard drive array.
    It was very busy blinking away even though I shut down
    notepad and nothing else was running except dreamweaver (I even
    checked Task Manger to make sure no process/thread that involved
    the hard drive...like a search indexing..was happening --but
    dreamweaver was the only thing banging away at my RAID collection
    of internal hard drives).
    So I decided to let it run while I watched a TV show and 47
    MINUTES later the rest of dreamweaver finally surfaced!!
    Was it searching for Internet Explorer?
    ..or maybe indexing drives/directories for the Site
    Manager..who knows?!
    But after saving an initial default site and restarting,
    dreamweaver took less than 15 seconds to load after that.
    To all those running Dreamweaver 4 under WinXP with
    multi-terabyte raid collections be warned!
    I doubt Adobe will issue a patch around this issue at this
    late date but I know I'm not the only one still running DW4 and
    after searching for hours in Google I found little or no
    documentation for this particular issue so let this thread be it .

    Now then Joshua Weeman,
    it appears you have fallen foul of one of the first rules: "Never buy top of the line hardware". Get the middle range and your'e in tried and tested territory. Same goes for software. FCP 2 is a beta to all intents and purposes, Color is a fresh port of Final Touch, and again, is a beta program. Spending loads of money on gear does not mean you will get flawless workflow, it just means you spent a huge wad. You can not, in all reasonableness, blindly believe the claims of vendors, even the fine folks at Cupertino ['send to' commands anyone?], they all tell fibs. All software has it's dark nasty little secrets, look up Captain Mench and his fine tutorials to find out more. With the system you have right now you are sorted for years of fun, time to start reading the manuals and the small print, All the information you need is within ten feet of where you are sitting and these fine forums contain anything that isn't.

  • Splash Screen Issue

    I am not able to show Splash Screen on the screen before application is loaded. I have already posted under Swings. Please take a look at the problems and tell me how can I solve my problem ? The address for the other thread is
    http://forum.java.sun.com/thread.jspa?threadID=793668

    I am not able to show Splash Screen on the screen before application is loaded. I have already posted under Swings. Please take a look at the problems and tell me how can I solve my problem ? The address for the other thread is
    http://forum.java.sun.com/thread.jspa?threadID=793668

  • Splash screen needs to keep on top

    Hello Everyone,
    I have been working on application where i need to show splash screen before launching the actual application.
    I did create JDailog as splash screen and want to show this splash screen at top of all application but I don't want to set setAlwaysOnTop(true). becasue my requirement is that to keep splash screen on top at the time of launching. if user click any other application and splash screen doesn't remain on top, that is fine with me.
    i want when i do launch my application and start working on other application like MS word, splash screen must visible at the top of the active application.
    so what really i need to do to keep this on top of active application.
    I don't want to use setAlwaysOnTop(true). because it has certain limitations and that doesn’t really work in my case.
    really looking for your great response.
    Thanks,

    You could do setAlwaysOnTop( true ) to ensure that the splash screen is shown on top,
    and have a listener to reset it once it is made visible. Something like
    splash.addHierarchyListener( new HierarchyListener() {
         public void hierarchyChanged(HierarchyEvent e) {
              if ( HierarchyEvent.SHOWING_CHANGED == ( e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED ) ) {
                   splash.setAlwaysOnTop( false );
    };

  • Cs2 illustrator werid splash screen

    hello!
    i posted this in another forum but didn't get a response.
    i just installed cs2 on my new mbp, ive heard a lot of problems that mbp has with cs2.
    so far everything works okay, but i realize that when i open illustrator, right before the splash screen when the flower appears, a white box appears on the screen for about a second and disappears, this is bugging me because i don't know what is wrong, does anyone have a similar problem?
    i saw in adobe site and heard something about rosetta, would it be that it was opening or runnig rosetta before it opens?
    thanks!

    Illustrator always runs under Rosetta, as it's an PPC only app., not Intel.

  • Splash Screen never goes away

    I'll post this again because a lot of people are having this same problem, but to my knowledge no one has solved it.
    In Compressor 3.5.1, when you load Compressor the splash screen appears but never goes away until you click "About Compressor" and then click on the splash screen, then it will disappear. I have trashed preferences and the problem persists.

    I finally found a fix that helped me out on 2 different problems:
    First was the issue with the green bar appearing on the right side of the frame.
    Second, the Compressor Splash screen never disappeared after it had finished loading. Once you clicked on About Compressor then the splash screen it would finally disappear. This didn't cause any performance issues.
    Thanks to monoschluzz in the following post for the directions to fix this nagging issue:
    http://discussions.apple.com/message.jspa?messageID=10575848#10575848
    Here are the directions he provided:
    Stop all rendering in Compressor. From the Compressor Menu choose "quit all background processing" and close Comressor. Open a Finder window, choose " got to folder " from Finder's "go to" menu and type
    /var/spool/qmaster/
    Done that you're in the "Qmaster" folder. In that folder there are one or more weird named folders (random numbers & characters - i.e. 76646663-DD71D83A)
    Delete that weird named folder (NOT the Qmaster folder itself) and restart Compressor.
    At this point I was able to render clean mov's without nasty green pixels.
    Hope that helps!

  • System Update Splash Screen Exit

    I've got four new systems here, all updated to SU 3.14, one downloaded and installed 800+MB of updates, and now all four launch SU, show splash screen, then exit immediately. The other three systems never even downloaded updates.
    No error messages from SU or Windows.
    Any help?

    I'm seeing this too on a brand new T400 Vista x64 System.  TVSU ran fine a couple of times and loaded all the drivers for me on a clean x64 install.  Now I see the splash screen, then nothing.  Tried reinstalling to no avil.
    UPDATE:  My issue may have been that I was running TVSU via RDP.  Once I got home and tried again, it worked.
    Message Edited by mhab12 on 07-10-2009 09:41 AM

  • PS CS5 Crashes before the splash Sceen

    I built a profile for a new user today. She's on a Leopard machine. When she opens Photo Shop it crashes before the splash screen even loads.
    the strange part is that it works on all other profiles on the Mac. The error report says something about Bad_Exec.
    Any Idea's? I tried explaining that I could just give them a PC to fix the issue but I was promptly ejected! lol.

    We'd have to see the crash report to have any idea what might be going on.
    The only crash reports that I've seen crashing that early were crashing in an OS routine that shouldn't be capable of crashing -- which probably indicates a corrupt OS install.

Maybe you are looking for

  • A blue highlighted line in Finder...

    I have at least one application that is "highlighted" in blue in Finder. If it matters, its "StarPlayr". Is this a feature of Finder/OS X or something built into this application that causes Finder to highlight it?

  • Hyperion Shared Services -- External user containers getting missed out .

    Hi All , In my hyperion enviornment user authentication is done through native directory and also through External directories configured to LDAP - OIDM . Frequently the external containers are getting disappeared from the shared services console. Bu

  • How can I creating hyperlinks that work for iOS reader?

    In a pervious thread the notion that hyperlinks withiin a PDF document deployed on an iPad do not work. Is there a work around? Perhaps <www.mysite.com> ? The Word document is a summary prepared by an author with embeded hyperlinks. Works on the desk

  • Link and iterators

    Hi, im working with adf faces and adf bc. I've a question. I've created tree entities (and view) in link so i have parent son and grandson. I want to create a table list from grandson and point to the page that manage that record. I've the problem th

  • OBIEE :: GoURL problem

    Hi All, Need help in Go-URL in OBIEE, the scenario is given below. I have to pass an 'OR' condition in Go-URL to the target report (i.e.) I have a line code which can have (Open, Closed, Finally Closed, NULL values) and I should send a condition like