Tungsten E2 Clean-up mode problem

After a hotsync operation, the handheld goes into the cleaning-up mode which used to take about 5 seconds and is now taking about 5 minutes.  Any suggestions to get it back to normal?
Post relates to: Tungsten E2

Try a Hard reset and resynch your data - that can help

Similar Messages

  • More design mode problems

    I've been down this road before but now it's getting just crazy. I can't get work done if I want to create a simple layout. I've created new workspaces, cleaned, everything I can think of including taking out any third-party components that might possibly be compiled in non 4.5.1 (though they supposedly have).
    I try to create a simple MXML component. If it's based on anything visual (e.g., panel) or if I start with a group and then drag in a panel, I just get the little computer icon with red x on it in design mode with the following errors in the Design Mode Problem panel. I mean, this is just a new, empty component.
    Assets failed to compile. 
    Design Mode is unable to display the document styles, skins, and images because the following assets have failed to compile:Details
    :Unable to resolve resource bundle "components".( - Line:-1)
    Unable to resolve resource bundle "skins".( - Line:-1)
    Unable to resolve resource bundle "core".( - Line:-1)
    Unable to resolve resource bundle "core".( - Line:-1)
    Unable to resolve resource bundle "effects".( - Line:-1)
    Unable to resolve resource bundle "layout".( - Line:-1)
    Unable to resolve resource bundle "styles".( - Line:-1)
    Unable to resolve resource bundle "components".( - Line:-1)
    Unable to resolve resource bundle "core".( - Line:-1)
    Any ideas?

    I thought I had it by deleting a namespace reference; things started to render and all was good for a couple minutes. Then it reverted to the same problem so I'm open to other suggestions.

  • TLS mode problem

    Hi i am trying to fetch a mail from my Zimbra account. But i am getting the following error.
    What is this TLS mode problem? please help.
    javax.mail.AuthenticationFailedException: only valid after entering TLS mode
    at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:146)
    at javax.mail.Service.connect(Service.java:297)
    at javax.mail.Service.connect(Service.java:156)
    at javax.mail.Service.connect(Service.java:105)
    at FetchMail.receive(FetchMail.java:40)
    at FetchMail.main(FetchMail.java:193)

    Hi i am trying to contact Our Zimbra server to retrieve the mails from Inbox, I used pop3 as protcol .. before but it was throwing an error
    javax.mail.AuthenticationFailedException: only valid after entering TLS mode
         at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:146)
         at javax.mail.Service.connect(Service.java:297)
         at javax.mail.Service.connect(Service.java:156)
         at SampleZimbraSMTP.postMail(SampleZimbraSMTP.java:44)
         at SampleZimbraSMTP.main(SampleZimbraSMTP.java:22)
    so i changed to pop3s & downloaded new jars. I am pasting the code here
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.mail.Authenticator;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.Multipart;
    import javax.mail.Part;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Store;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    public class SampleZimbra {
         public static void main(String args[]){
              try {
                   SampleZimbra zm = new SampleZimbra();
                   zm.postMail();
         catch (Exception e) {
                   e.printStackTrace();
         private boolean debug = false;
         public void postMail() throws Exception {
              Properties props = new Properties();
              Authenticator auth = new ZimbraAuthenticator();
              Session session = Session.getDefaultInstance(props, auth);
              session.setDebug(debug);
              Store store= session.getStore("pop3s");
              store.connect("ip address","username","password");
              Folder folder = store.getFolder("INBOX");
              folder.open(Folder.READ_ONLY);
         // Get directory
         Message message[] = folder.getMessages();
         for (int i=0, n=message.length; i<n; i++) {
         System.out.println(i + ": "
         + message.getFrom()[0]
         + "\t" + message[i].getSubject());
         // Close connection
         folder.close(false);
         store.close();
    class ZimbraAuthenticator extends Authenticator {
         public PasswordAuthentication getPasswordAuthentication() {
              return new PasswordAuthentication("username", "password");
    After this code compiles & when i try to run it throw me the following error..
    javax.mail.MessagingException: Connect failed;
    nested exception is:
         javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
         at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:148)
         at javax.mail.Service.connect(Service.java:275)
         at javax.mail.Service.connect(Service.java:156)
         at SampleZimbraSMTP.postMail(SampleZimbraSMTP.java:44)
         at SampleZimbraSMTP.main(SampleZimbraSMTP.java:22)
    Caused by: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
         at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Unknown Source)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(Unknown Source)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Unknown Source)
         at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(Unknown Source)
         at com.sun.net.ssl.internal.ssl.AppInputStream.read(Unknown Source)
         at java.io.BufferedInputStream.fill(Unknown Source)
         at java.io.BufferedInputStream.read(Unknown Source)
         at java.io.DataInputStream.readLine(Unknown Source)
         at com.sun.mail.pop3.Protocol.simpleCommand(Protocol.java:347)
         at com.sun.mail.pop3.Protocol.<init>(Protocol.java:91)
         at com.sun.mail.pop3.POP3Store.getPort(POP3Store.java:201)
         at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:144)
         ... 4 more
    Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
         at sun.security.validator.PKIXValidator.doBuild(Unknown Source)
         at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)
         at sun.security.validator.Validator.validate(Unknown Source)
         at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)
         at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkServerTrusted(Unknown Source)
         ... 19 more
    Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
         at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)
         at java.security.cert.CertPathBuilder.build(Unknown Source)
         ... 24 more
    Can any one guide me to resolve this....
    Thanks
    Bharathi.
    Message was edited by:
    bharathi

  • SOLVED : Lenovo X60 spontaneou​s sleep mode problem.

    The problem is the flat panel screen! (either t-conn board and/or backlight). Viewiz HV121X03-100 Part No. 42T0359 FRU No. 13N7205. LCD : Wistron P/N:60.4Q443.001
    I have 2 identical of Lenovo X60 laptops, with swivel-type-hinge at center. One has this spontaneous sleeping mode problem. I thought it was the Inverter problem - WRONG. Next some say it's the motherboard, CPU fan & heatsink, BIOS updates wrong also. All of these assumptions and theories are wrong diagnosed.
    Solution replace the flat panel screen (very expensive because it has Wacom digitizer glass on top of the screen and board at the bottom.)
    Roan
    Computer Technician
    Chapel Hill, NC

    Hello @Tilia,
    I have read your post on how your notebook computer is experiencing an issue with waking up from sleep mode, and I would be happy to assist you in this matter!
    To further diagnose this issue, I recommend following the steps in this document on Troubleshooting sleep and hibernate issues in Windows 8. This should help configure your power management settings to effectively use sleep mode on your system. 
    Additionally, you can also restore your notebook's default power schemes by following the steps below:
    Step 1. Click the Start button
    Step 2. In the search box, type "Command Prompt"
    Step 3. Right-click Command Prompt
    Step 4. Click Run as administrator
    Step 5. At the command prompt, type powercfg /restoredefaultschemes and press Enter 
    reference: http://superuser.com/questions/669571/windows-8-1-64-bit-power-schemes-gone
    Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • SWC Load Error - Design Mode Problem

    Hi,
    I'm loading custom .swcs into my Flash Builder (4.5 Burrito) project and I get these errors. These will only appear in design mode (not in source mode) and will not be labelled under the Problems tab, rather the Design Mode Problems tab:
    SWC Load Error
    SWC file failed to load. Any component dependent on this SWC file will not be displayed in the Design Mode.
    The SWC may have failed to load because of: 
    *  Incompatible definitions caused by usage of a different SDK version 
    *  Missing referred class definitions
    I don't think this problem is caused by an SDK incompatibility, as all these swcs have been created under flex 4 and I'm pretty sure under the 4.5 SDK.
    Loading the components contained in these swcs onto my canvas (at design time) will work fine. I'm able to build and run the application without any errors caught by flash builder.
    Any idea how to fix this problem, or what it means?

    SWC Load error indicates that the swc used does not match with the definitions present in design view or with what is present in already loaded other lirbaries.  The issue is reported by the flash loader.  It looks like that, your swc is compiled with a previous version of the sdk and the design view and the related definition correpsonds to another version.
    The incompatability logic is not in DV.  When DV tries to load all the swc details available in the project, the loading fails as the loader reports the issue. There is hardly anything, we can do here from DV.  If the player reports the incompatability issue, the loader is corrupted and all further loading is ignored. So to avoid such issue, DV ignores the failed swc's and tries to proceed.
    If you pass me the swc , I can give the details of the incompatability. Ideally between 4.5 and 4.5.1 there should not have been any incompatability.  However your case shows there is.  You can contact me at [email protected]

  • Standby mode problem

    anyone ever have this problem wit their S10 netbook where you flip the screen down and the computer goes into standby mode, but after an hour the computer boots itself up and the screen turns on? This has happened to me ever since I got my netbook and I don't know how to keep the computer from waking up. Thanks!
    Solved!
    Go to Solution.

    Hi there...Update to latest BIOS  ? and check all settings in ....
    Lenovo Energymanagement 
    sincerely KalvinKlein 
    Want more ? For further information to get the most of your S-Class machine
    Lenovo Energymanagement 
    Backup
    Windows 7 Vista XP Driver all S-Series
    Windows 7  Install
    Clean XP Install
    XP Startup
    Small WebCam Guide
    Lenovo Easy Capture
    Resolution > 1024 x 576 / 600  Works with XP Only
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • Lock records when in Update Mode / problem with 2 users on 1 document

    Hi,
    when user A updates e.g. a purchase order and user B goes into this purchase order and updates e.g. the remark before user A, then user A cannot save his changes. Imagine user A has put in several new lines and has made several price adjustments, his work will be gone.
    In most cases this should not happen very often, but it could. Since B1 recognizes when another user has updated the document before, it should be possible to solve this situation more convenient (either by lock, saving to a new document, comparing to the old version, etc).
    Thank you
    Sebastian

    Hi Sebastian,
    Your request is understandable. It may not have big problem to change current process by coding. However to lock records whenever in update mode, that could create too many locks. It is basically not good for performance. The trade off may be allowing save as function. However, this may not be a desirable solution for most end users.
    Thanks,
    Gordon

  • K9N PLATINUM(NON SLI) DUAL CHANNEL MODE PROBLEM

    hi
    put a new system together with the following specs:
    amd am2 3800+(2ghz)
    k9n platinum 1.20 bios
    2x512 kingston ddr2(667mhz)
    pci video(yes not pci-e)have not decided which vid card to get yet.
    500w  psu 12v 35a,5v 25a,3.3v 25a
    liteon dvd burner
    seagate 300gb ide  7200/16 meg cache windows xp-pro sp2 with all updates.
    not overclocking or even trying to.
    no sata drives connected.
    has never failed to post,boot windows and no lockups or blue screens.
    ok,i am trying to get the memory to work in dual mode.
    everytime i put the memory in the dual mode slots,the cpu clocks down to 1ghz instead of 2ghz.
    verified by bios,windows and cpu-id
    i have tried different memory(both ddr2 533 and 667)667 installed now.
    also never had any install problems with windows and everything runs fine until i tried dual mode.
    after the cpu clocks down to 1ghz,the only way to get it back to normal is a bios reset( load defaults
    or press red button).
    if i leave the memory as single channel then i have no issues.
    also cpu-id says the chipset for my board is nforce 550,i thought k9n platinum had 570 nforce chipset?
    this might just be a problem with cpu-id though.
    any thoughts on the cpu down clock problem in dual channel mode?
    thanks,jeff

    1 assume you can get into BIOS with 1 stick only?
    Go into the BIOS and manually set the timings and voltage to what your memory manufacturer recommends. Use a 2T command rate and see if it works.
    Try both "sets" of dual channel slots, i.e. the two left slots or the two right slots.

  • Sending a bug report on the OS and a sleep mode problem.

    I find the bug button in Safari really convenient for sending Apple bug reports. And when other applications crash, you usually get an error dialog with a button to send a bug report. But sometimes problems arise that require reporting, but which don't fall in either of these categories. It would be very handy to have a bug "button" for the OS, or perhaps just a menu selection in the Finder menu bar that invokes a bug report dialog box. I know you can dig around and find the URL for Apple's bug report web page, but I am always forgetting it -- I suppose I could just bookmark it, but then I'd just have to dig around in all the bookmarks to find it. Better would be a utility built-in to the OS for sending bug reports (like Safari's). It could also automatically transfer necessary info about the OS rev and such.
    The problem I had was this. I have a script that puts my iMac to sleep. I put the script alias on the task bar and a single click puts the computer to sleep (easier than using the menu). Unfortunately, I sometimes click it by mistake when I am trying to click an adjacent icon in the task bar, and the Mac starts going through its cycle to enter sleep mode and is impervious to anything I do to try and cancel it. I tried pressing the space bar continuously to prevent it from going to sleep, but that did not work. Worse, when it went to sleep and I woke it up again, the task bar would not appear, clicking on app windows did not activate them, Finder menus could not be selected, etc. The cursor would move, but I could not do anything else. (I wish now I had noted if the clock in the menu bar was still advancing, but I didn't think to do that.) I powered down the iMac from the power key and rebooted. Things are working fine now.
    I wanted to send a bug report on this, but realized that unlike Safari, there was no button or menu selection for doing that. So here I am.
    Any suggestions are welcome.
    TIA,
    Drake

    [email protected]
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Starting up in single-user mode problem

    I'm trying to start up in single user mode using the Apple article. I ran fsck and everything checked out fine but when I type /sbin/mount -uw / I just get another prompt(#). I want to restore defaults because the users pane is blank. Iv'e tried trashing prefs,ect with no change. I'm sure i'm typing it in correctly. Any suggestions wil be appreciated.
    iMac G5 1.8 17   Mac OS X (10.4.3)  

    I'm working with an iBook 600 OSX 10.4.3 that had a problem with a dialog box constantly coming up asking for the keychain password which had no password and you could just cancel out of it. I deleted some keychain user info and that's when the accounts pane became an empty window. So I'm going to use the Terminal to restore from defaults. I'm assuming that I won't loose any data doing this. It looks like my only option other than a wipe of the hard drive.
    iMac G5 1.8 17   Mac OS X (10.4.3)  

  • Adobe Reader XI protected mode problem

    I downloaded Reader XI and went to open a pdf that previously worked with Reader.  But Adobe Reader XI won't open (says problem with "protected mode").  I can't open any pdf's either on my computer or on the internet at trusted sights.  Troubleshooting takes me to a page on fixes for Reader X. Not helpful!  Any ideas?  (I uninstalled and reinstalled and still won't work.)

    CoUnyot,
    Thanks for your post ...
    Please Disable protected Mode .. Please find the below steps ":
    Disable Protected Mode by going to Edit > Preferences > General and deselecting Enable Protected Mode at startup. 
    Restart Reader.  
    You can also refer the below link for more details :
    http://helpx.adobe.com/acrobat/kb/protected-mode-troubleshooting-reader.html

  • Clamshell mode problem please help

    I connect my macbook to external display, then I sleep my mac by closing the lid.
    I've got a usb mouse connected before this sleep.
    After it goes to sleep I use the mouse to walk it up in clamshell mode and the computer wakes up in external display and in about 3 seconds it again goes to sleep and no response after it.
    I did everything to wake it. But it didn't.
    So I opened the lid to wake it up display comes in external display.
    How to make this clamshell work please help...
    Thanks in advance...:)

    I solved this problem this way --
    Shut down your computer.
    Be sure everything is plugged in (external displays, etc.).
    Press the power-on button and immediately close the lid all the way shut.
    As your Mac reboots, your external displays will go live.
    Log in, if necessary, and you're good to go.
    (I use a wired keyboard & a wireless mouse.)

  • T60 Type 2623 Blue Screen on Resume from Sleep Mode problem solved - XP Pro

    I hope that this post ends some frustrations for some people.
    I hope that IBM deals with this issue by getting ATI to fix the video driver issue.
    After three months of tracking down blue screens when resuming from Sleep Mode and some lockups while working, I have identified the problem on my T60 Type 2623 running Windows XP-Pro and all service packs and updates.  The Sleep Mode resume issues were intermittant and it would be fine for a day or two and then reboot on Resume or reboot every time I used Resume for a while.  For months the Blue Screen would reboot and attempt to send the message to Microsoft using the logs, but the logs were always corrupted.  I disabled every driver that I could and the problem continued for months.
    The problem solution came about when I decided to try my Rhapsody Music account after many months of not using it.  I kept getting a message about DRM (Digital Right Management) being disabled and Rhapsody software could not self-fix this.  So I finally called Rhapsody and they spent over an hour with me trying to get Rhapsody to work.  The support person asked me about my computer and I noted that it was an IBM T60.  He then asked about my Video Card and I responded that it was an ATI Mobility Radeon X1300.  After a few minutes on hold he asked about my driver version which was 8.442.3-080103a1-057754C the set from January 31, 2008.  He noted that there is a known problem wit the 8.4 driver and it interferes with DRM.  He had me go to control panel Settings and Hardware and then roll-back the driver to the prior version.
    After a reboot, the DRM issue was solved and I soon discovered that my resume from Sleep mode no longer crashed.  In fact it has been fine and crash free for over a month now.  I have noted that the older driver can sometimes resize my screen to something like 600 X 800 if I close the lid under certain circumstances, but that is just a function key reset to get my normal desktop resolution back.  At least it is not a blue screen reboot with a corrupted log file.
    Message Edited by retro74 on 07-05-2008 08:50 AM
    Solved!
    Go to Solution.

    Unfortunately I could not fix the problem so I wiped my system and loaded all new drivers before I found this posting.
    Is there a way to get the old ATI driver that works? The only one available on the ATI and Lenovo website is the latest one with the problem. I agree with you David, Lenovo should have fixed this problem already with ATI.
    John

  • Quick mask mode problem in Photoshop CS6 64bit

    Hi, I have recently installed Photoshop CS6 after previous happy experience with CS3.
    The software appears to be seizing up when editing a selection in quick mask mode (image or layer mask) under the following conditions:
    - 64 bit mode
    - image > screen size, especially at 100% maginification
    - or image magnification adjusted whilst in quick mask
    The red mask appears slowly and only where I move the mouse curser - but will not cover the entire masked area.
    The software freezes, and I have to kill the process from the OS. Task manager shows its status as 'running' and memory / CPU do not appear to be maxed out.
    System info:
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:5, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2394 MHz
    Built-in memory: 3955 MB
    Free memory: 1488 MB
    Memory available to Photoshop: 3360 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Mobility Radeon HD 5650
    Video Card Number: 1
    Video Card: ATI Mobility Radeon HD 5650
    OpenCL Unavailable
    Driver Version: 8.712.2.1000
    Driver Date: 20100315000000.000000-000
    Video Card Driver: atiu9p64.dll,aticfx64.dll,aticfx64.dll,atiu9pag,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1600 x 900 x 4294967296 colors
    Video Card Caption: ATI Mobility Radeon HD 5650
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 91198564117458096913
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\User\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 232.9G, 164.9G free
    Any help with this appreciated as I use QM a good deal,
    Thanks
    Tim

    Boilerplate-text:
    Does turning off »Use Graphics Processor« in the Performance Preferences and restarting Photoshop have any bearing on the issue?
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by keeping command-alt-shift/ctrl-alt-shift pressed while starting Photoshop after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)?

  • T400 sleep mode problem

    Hi, I got my new T400 last week, prett happy. However, I found an annoying problem with T400 entering sleep mode. Randomly, it fails to go into sleep mode. It just hangs there with no response at all from keyboard and mouse, the "sleep moon" light doens't turn on either. I have to hold the power button to forcely shut it down and reboot. Quite annoying.
    I did some research on this forum, somebody suggested reinstall the Power Manager and its driver, I tried that and the problem remains. BTW, My video driver is also up to date.
    Then I called Lenovo/IBM Atlanta support team, and was told to try to update my BIOS. So I preceeded with that too. Because I have Vista64, I have to download an iso image and burn a bootable CD with Roxio Creator (preinstalled on T400), and changed the BIOS startup sequence to boot from the internal CD drive. Somehow, T400 couldn't boot from the CD I burned with the BIOS update iso image. So I am back to suqare one.
    Someone in this forum also suggested it might be a motherboard problem, but the tech rep I talked with didn't mention that.
    Any suggestions on this sleeping mode issue? Or if you could help with the bootable CD with BIOS update? Thanks in advance!
    (The BIOS update iso image is here: http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-70351)

    svchw wrote:
    Then I called Lenovo/IBM Atlanta support team, and was told to try to update my BIOS. So I preceeded with that too. Because I have Vista64, I have to download an iso image and burn a bootable CD with Roxio Creator (preinstalled on T400), and changed the BIOS startup sequence to boot from the internal CD drive. Somehow, T400 couldn't boot from the CD I burned with the BIOS update iso image. So I am back to suqare one.
    Any suggestions on this sleeping mode issue? Or if you could help with the bootable CD with BIOS update? Thanks in advance!
    (The BIOS update iso image is here: http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-70351)
    Sorry, I have to ask the usual iso burn question: are you burning it as a file, or as an image?  If your cd is readable under windows (or whatever) and has a file on it called xxx.iso, you probably used the wrong burn option.
    No offense, but this is the usual problem.  If you are already handling this, sorry about the noise...
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

Maybe you are looking for

  • SSL Private Key

    Hi, I would like to export my Portal private key, so that it can be used for network traffic capture (Wire shark). Can anyone point me in the direction as to where this file can be exported. Thanks Kai PS. Points will be awarded.....

  • Quick Dumb Question

    I"m assuming when you upgrade from final cut express to final cut pro all your files and everything from express goes into final cut pro?? Correct? Also, what about imovie? Can you still import those files into final cut pro like you can with final c

  • Annoying dust in a VERY weird place.  Help?

    I got my black iPod nano 4G 8GB at Radioshack on October 18th. Now it's Thanksgiving (Nov. 27), and I noticed some dust in a very strange place. It's in between the glass and the screen itself. I haven't ben able to get it out, and don't know how to

  • Error: getting dev info for Tape - unrecoverable error

    Hi, I have configured a Oracle Secure Backup version 10.4.0.1.0_LINUX64. It was working corretly until yesteday that i can't mount the tape because this error appears: Error: getting dev info for Tape - unrecoverable error I run this command with obt

  • Price and Licence Acroba XI Pro in WS 2008 12 Licenses

    Dear All We would like to install the Acroba XI Pro as a service hosted in WS 2008 for 12 users. Could you tell us the price of the license and requirements? Thank you