Rapid start stopped working on U310 after upgrading to win 8.1

I updated my U310 to win8.1 from win8, and then I found that it kept giving me an error message "Your system does not appear to have Intel Rapid Start Technology enabled."

kyh,
OneKey recovery won't help with the SSD because it only affects the disk drive (C:\) and IRST/mSATA are a completely separate drive that OneKey does NOT touch.
I just received my laptop back from Lenovo after sending it in about a week ago (they were very fast) and the return sheet says they replaced the SSD.
My laptop is back to booting up in about 10 seconds again - however in the BIOS the IRST still says INVALID. Not sure if that matters at this point because all seems to be working well. The mSATA SSD they replaced it with is a Samsung one.

Similar Messages

  • Intel Rapid Start stops working when RAM upgraded

    I have a brand new ENVY dv7-7212nr notebook running Windows 8 64-bit.
    This machine has Intel Rapid Storage Technology which caches hard disk data (I think on the 32GB SSD) and Intel Rapid Start Technology which stores active memory in the SSD cache (I think) when the computer enters a hibernation state.
    The first thing I did was upgrade the RAM from 8GB to 16GB.  It works fine, but then I get an error message "your system does not appear to have intel rapid start technology enabled."
    HP provides very little information on this, basically none.  I assume the memory is being cached on the SSD, but I don't know how to verify this.  Also I notice that acceleration is not enabled under the Rapid Storage Tecnology applet for either drive.
    I called tech support twice but the techs knew nothing about upgrading RAM beyond the usual and couldn't get it to work either.
    Does anybody even know exactly how the SSD is being used in my system?  That would be valuable information to me.
    Thanks in advance!
    This question was solved.
    View Solution.

    Thanks for reading my reply.
    The "little SSD" is still a drive and not a chip, although you are right that it is little and it is attached to the motherboard. It is little because its form factor is not the typical 2.5 inch size but what's call "mSATA". In fact, the service manual for this dv7-7212nr laptop shows you how you can remove and replace or upgrade this mSATA SSD:
    Below is a comparison of how small the mSATA form factor is to other drive sizes (from Left to Right: mSATA, 1.8", 2.5", 3.5"):
    So if I want to replace the mSATA 32 GB SSD with a 64 GB SSD, I would have to get a mSATA SSD, not the typical 2.5" ones. So for this dv7-7212nr laptop, there can be 3 total drives installed: one in the mSATA slot and two in the 2.5'' drive bays. However, the default configuration as sold by HP only has one mSATA 32 GB SSD and one 750 GB SATA hard drive, with the remaining drive bay empty.
    This dv7-7212nr laptop does contain all the latest (and perhaps more complex) technologies and HP probably does not expect the typical user/consumer to go and muck around all the default settings. However, if one is curious and willing to make the effort to learn, the material is just a google search away.
    Here are the instructions for setting up Intel Rapid STORAGE Technology (aka Intel Smart Response Technology): http://download.intel.com/support/chipsets/sb/intel_smart_response_technology_user_guide.pdf
    For this dv7-7212nr laptop, you can ignore steps 1-4 because the BIOS is already configured properly from the factory (unless some changes were made by the end user).
    Here are the instructions for setting up Intel Rapid Start Technology:
    http://download.intel.com/support/motherboards/desktop/sb/rapid_start_technology_user_guide_v11.pdf
    For this particular laptop, ignore steps 1-7 but it is important to do this first: set up Intel Smart Response Technology as above, making sure to allow enough space on the SSD for a hibernation partition that is equal to or greater than the total size of RAM installed. Then follow steps 8 to the end of the guide.  It is important to set up Intel Smart Response before Intel Rapid Start because Intel Smart Response will destroy all partitions and data on the disk (if you set up a hibernation partition for Intel Rapid Start first, it will be removed when you set up Intel Smart Response).
    I have successfully ENable and DISable these technologies on my laptop using the above guides (with my modifications). WARNING: back up all data before trying any of this.
    In your case, I agree that you can also disable Rapid START and just use the whole SSD for acceleration along with the 16 GB RAM upgrade.
    [Edit: update link]

  • SWT in Java WebStart App stopped working on OSX after upgrading to Java 7

    Hi Forum-Readers,
    i'm maintaining a JavaWS application using SWT for our company for quite a while now. I have reports that it stopped to work on Apple OSX computers, so i started digging into it.
    It seems Apple has dropped their own Java 1.6 implementation and Oracle's Java 7 is now installed by default. An here the misery begins...
    My app started to report the known "***WARNING: Display must be created on main thread due to Cocoa restrictions. / org.eclipse.swt.SWTException: Invalid thread access" issue. Okay, it seems that -XstartOnFirstThread works for Apple's 1.6 but not for Oracle's java 7?
    After digging into it i found out that Oracle's implementation didn't do a restart with -XstartOnFirstThread during javaws init. The cause was that i've dropped signing the application's jnlp file due to some issues on the Microsoft platform. Don't care, i signed it again and next try - and i got one step further:
    Java is now restarted with -XstartOnFirstThread, but then everything freezes up. It seems there is a massive problem bringing up the AWT/Swing subsystem because javaws launcher is sitting on the main thread and AWT also want's the main thread because of the same cause we want it for SWT...
    My next try was to add an additional -Djava.awt.headless=true parameter, and at least everything comes up into my app - but i'm dying on the "Invalid thread access" issue again. I think the javaws starter or maybe AWT is still fooling around with the threads...
    BTW: i just tried it with swt-4.2.1.
    Anyone out there having the same issue or idea's what else i can try?
    Thanks & Bye,
    Chris

    I have made some progress in my RCP application. Inside my implementation of IApplication.start(), I have (ignore the sloppy error handling for now):
    if (SystemHelpers.isOSMac()) {
    private boolean isDisplayBuilt = false;
    try {
    try {
    Class<?> comAppleConcurrentDispatch = Class.forName("com.apple.concurrent.Dispatch");
    Method getInstance = comAppleConcurrentDispatch.getMethod("getInstance", (Class<?>[]) null);
    Object dispatchInstance = getInstance.invoke(null, (Object[]) null);
    Method getNonBlockingMainQueueExecutor = dispatchInstance.getClass().getMethod("getNonBlockingMainQueueExecutor",(Class<?>[]) null);
    Executor executor = (Executor) getNonBlockingMainQueueExecutor.invoke(dispatchInstance, (Object[]) null);
    executor.execute(new Runnable() {
    public void run() {
    try {
    if (display == null) {
    display = PlatformUI.createDisplay();
    PlatformUI.createAndRunWorkbench(display,
    new MyWorkbenchAdvisor()); //my implementation of WorkbenchAdvisor
    isDisplayBuilt = true;
    } catch (Throwable t) {
    //log error
    } catch (Throwable t) {
    //log error
    SwingUtilities.invokeAndWait(new Runnable() {
    @Override
    public void run() {
    while (isDisplayBuilt == false) {
    try {
    Thread.sleep(100);
    } catch (InterruptedException e) {
    //log error
    } catch (Throwable t) {
    //log error
    Putting the AWT EventQueue thread to sleep was a pretty brutal way to go, but it was the only way I could figure out to wait to get the Display object initialized and b) get the non-blocking main queue executor to actually fire the run method.
    But now I'm up against the next issue, which is that my application also uses the AWT_SWT bridge. The first time I try and get an AWT/Swing class running, I get the following:
    (AppKit Thread) A org.eclipse.swt.SWTError object with a message of:
    org.eclipse.swt.SWTError: Not implemented (java.lang.ClassNotFoundException: apple.awt.CEmbeddedFrame)
    was generated in the following call stack:
    at org.eclipse.swt.SWT.error(SWT.java:4109)
    at org.eclipse.swt.SWT.error(SWT.java:3998)
    at org.eclipse.swt.awt.SWT_AWT.new_Frame(SWT_AWT.java:145)
    at com.lspeed.workbench.AstoriaNavigatorWindowAdvisor.prepareModalFrame(AstoriaNavigatorWindowAdvisor.java:416)
    at com.lspeed.workbench.AstoriaNavigatorWindowAdvisor.createWindowContents(AstoriaNavigatorWindowAdvisor.java:325)
    at org.eclipse.ui.internal.WorkbenchWindow.createContents(WorkbenchWindow.java:1016)
    at org.eclipse.jface.window.Window.create(Window.java:431)
    at org.eclipse.ui.internal.Workbench$22.runWithException(Workbench.java:1208)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3593)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3286)
    at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
    at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:179)
    at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150)
    at org.eclipse.swt.widgets.Display.syncExec(Display.java:4240)
    at org.eclipse.ui.internal.StartupThreading.runWithoutExceptions(StartupThreading.java:94)
    at org.eclipse.ui.internal.Workbench.init(Workbench.java:1562)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2567)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
    at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.lspeed.workbench.AstoriaNavigatorApp$1.run(AstoriaNavigatorApp.java:84)
    Caused by: java.lang.ClassNotFoundException: apple.awt.CEmbeddedFrame
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:264)
    at org.eclipse.swt.awt.SWT_AWT.new_Frame(SWT_AWT.java:140)
    ... 25 more
    due to the following cause:
    This appears to come down to the reported bug in OpenJDK: http://www.java.net/forum/topic/jdk/java-se-snapshots-project-feedback/eclipse-swtawt-bridge-broken-mac-os-x-openjdk-7u4ea
    I think I'm stuck there.

  • NOKIA 6021 stopped working/syncing properly after upgrading to 10.4.9

    Hi,
    Everything is in the tittle ... When I try with another machine with 10.4.8, there is no problem. I have try resetting the phone without any result ... Help !
    Faithfully Marc vdp
    Mac Mini   Mac OS X (10.4.9)   PPC

    I had the same issue.
    I resolved it by resetting the Sync History in the iSync Preferences menu.

  • Hp Mini 110 1013tu Keyboard is Not working after upgrade to win 7

    Hello need help on weird happenings to my keyboard..
    Before i upgrade the Operating System From Windows XP to Windows 7 the Hp Mini 110 is working fine..
    All keys on keyboard is working and touchpad is also working.
    But after upgrading to windows 7 some keys on keyboard are not working like z,x,c,v, left ctrl and other more keys..
    what do you think is the problem??
    Hardware Issue? or Driver Issue?
    please help thank you..

    Hello @MysticDragon ,
    Welcome to the HP Forums!
    I understand some of the keys on your keyboard are not working after installing Windows 7.
    I do not see any drivers available for your notebook for Windows 7 on the HP website, so their might be some compatibility issues as it's going to rely on Windows update to find current drivers. This doesn't mean it will not work, but I cannot say for sure that it will.
    Try this:
    1. Click Start.
    2. Click Control Panel.
    3. Click Clock, Language, and Region.
    4. Click Region and Language.
    5. Click the Keyboards and Languages tab.
    6. Click Change keyboards...
    7. On the General tab, make sure English (United States) - US is selected in the Default input language field.
    8. Click on any other keyboards in the Installed services list.
    9. Click Remove.
    10. Repeat for all other non-English (United States) keyboards.
    You may also want to try rolling back to Windows XP and see if the issue persists. It is possible the issue is coincidental and not the direct result of the update to Windows 7.
    Let me know if this works!
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

  • After upgrading from Win 8 to 8.1 my DVD RAM GT80N SATA Drive is no longer working

    After upgrading from Win 8 to 8.1 my  DVD RAM GT80N SATA Drive is no longer recognizing discs. When I first put a disc in the drive runs for a bit and then stops. I've tried updating the driver but it says it has the most current driver. Under manage, it does not show any error codes and it says it is working correctly. I've looked at the regedit and it does not have any of upper and lower filters. I've tried disabling, rebooting, and reenabling. What am I missing? Another issue I've had since upgrading is that my network adapter needs reset several times a day in order to remain connected to wifi.

    Hey hvbnfrgvn,
    Thank you for the information on your HP Pavilion g7-2270us Notebook PC.
    I suggest following the steps in this document for Drive Cannot Read Discs (Windows 8).
    If your CD/DVD Drive Is Not Detected (Windows 8), follow the steps in this document.
    I hope this information helps, please keep me posted on how it goes.
    Best of luck and have a great day!
    I worked on behalf of HP.

  • I have installed Premiere Elements 11 from a disc I bought from Amazon.  I keeps asking me to re-install or if it does start stops a few minutes after I start a project.  I have a windows 8.1 PC.  I have tried numerous times to install the program and als

    I have installed Premiere Elements 11 from a disc I bought from Amazon.  I keeps asking me to re-install or if it does start stops a few minutes after I start a project.  I have a windows 8.1 PC.  I have tried numerous times to install the program and also to open it as Administrator as suggested by a friend but it still refuses to work.  I need direct help from Adobe but don't know how to get to them on this website as they seem to rely on user forums to advise customers.

    WhiteHouse Norm
    This question is already being responded to in the following duplicate thread
    Premier elements 11 keeps stopping
    Please reply in the other thread which has a discussion in progress.
    Thank you.
    ATR

  • IPhone 4 8GB white working very slow after upgrading to IOS7

    Phone 4 8GB white working very slow after upgrading to IOS7

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Icloud stopped after upgrading to win 8

    icloud stopped working after upgrading to win 8.
    Says "map cannot be found".
    Any suggestions? Or will it simply not work with Win 8?

    Solved.
    Needed upgrade to 2.1

  • Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use

    Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use. I have uninstalled/re installed twice, cleaned system, adjusted Bridge settings with no change. And I have found no helpful troublshooting tips in forum or on web.

    Does it freeze with other type of cards.  Have seem some post that suggest an imbedded CODEC on the flash card can cause file corruption in Bridge and Mac Finder.
    To access the crash log it is officially called the event log.  To access us OS Help. 

  • My iPhone 4 fell down on my bed and not starting (stopped working)

    My iPhone 4 fell down on my bed and not starting (stopped working)

    Thank you RAZMEE209, i tried in the same way but could not worked out, than i put on Charging. Automatically asekd me to connect to iTunes and than restored all new software. thnx again

  • I have a problem in iPhone . When you receive a contact and press the key at the top to cancel the contact screen stopped working .ataml times after the last restart device

    I have a problem in iPhone . When you receive a contact and press the key at the top to cancel the contact screen stopped working .ataml times after the last restart device

    Since restarting did not help, reset your iPhone, see: Turn your iOS device off and on (restart) and reset  http://support.apple.com/kb/ht1430
    If that still does not solve it, check, if the contact you are trying to add is problematic. Try to save a different contact. Does that work?
    If not, reinstall the Contacts app. This is only possible by restoring your iPhone, unfortunately.
    See: Use iTunes to restore your iOS device to factory settings  http://support.apple.com/kb/HT1414

  • ST22 timeout for all LC related transactions  LIVE cache start stop working from LC10

    Hi Team
    we are a getting a  ST22 timeout for all LC related transactions  LIVE cache start stop working from LC10
    LC version 7.9
    OS AIX
    SAP SCM 7
    SDBVERIFY giving the following error
    Checking package Redist Python
    Checking package Loader
    Checking package ODBC
    Checking package Messages
    Checking package JDBC
    Checking package DB Analyzer
    ERR: Failed
    ERR: Checking installation "Legacy" failed
    ERR: Group of directory /sapdb/data/config/install changed [0 =>
    sdbregview -l is showing good.
    any idea what might went wrong.
    trying to use sdbverify -repair_permissions , but not sure about the exact syntax to use.
    and it is not related to timeout parameter, we tested with different timeout values, but still the same error.
    thanks
    Kishore Ch

    Hello Kishore,
    you could check the sizing of the liveCache data.
    * Report  /SAPAPO/TS_LCM_REORG_SNP has checks  of the SNP planning areas for superfluous objects.
    * Delete old/temporary APO data.
    * /SAPAPO/TS_LCM_REORG report checked TS superfluous objects.
    If you didn't create the planning versions, copy of planning versions & data load to liveCache, then create the SAP message to check your system on the question of the dataarea usage.
    If you have the long running APO transactions => performance of the SCM system has to be checked.
    If you have the bottleneck in liveCache & could not solve the case by yourself => create the SAP message to BC-DB-LVC and get SAP support.
    Best regards, Natalia Khlopina

  • Why has the vibrate stopped working since the iso7 upgrade?

    Why has the vibrate stopped working since the iso7 upgrade?

    Chez440 wrote:
    Why has the vibrate stopped working since the iso7 upgrade?
    Go to Settings > Sounds.  Is Vibrate turned on?

  • Help my Ipod suddenly stopped working 2 min after unplug from car......

    Help my Ipod suddenly stopped working 2 min after unplugging it from my scion pioneer ipod ready radio. I am not sure what happened; it was working fine and charged sufficiently and i walked into the gym and tried to turn it on, and no life. I tried plugging it back into my car and it says "i-pod read error". I then tried to plug it into my computer and it doesnt even read it. I may have unplugged it when it said do not disconnect; i am not sure though.Any suggestions? thanks!
      Windows XP  

    I'd say your "Scion Pioneer" radio fried your Mini; could have been a power surge, or could be a bug.
    You might want to go the "aux jack" route next time.

Maybe you are looking for

  • BW-BO integration challenge

    Hello Experts, Could someone probably suggest a good approach to my design issue. Scenario: WEBi report on a BW Query Universe + Teradata Universe for Top X customers. The selection for Top X (Where X is a variable) is by default 20 and has the optio

  • Hp Laserjet 5100 paper problems

    I am working with a 5100 laserjet that I cannot get to print from the 2nd tray (11x17) unless the 1st tray (8-1/2X11) is empty. I am more of a PC hardware/repair guy so this has me stumped. I have checked the paper handling PCA, made sure that both s

  • Changing a linechart background color upon a chartitem selection

    hello guys, I am displaying multiple lines vertically in a linechart. User can make a rectangular selection on chartitems. I want to change the linechart background color of the selected region only. So if user selects multiple region then I will be

  • Motion won't open

    Template page opens but when I select a template I get the spinning beach ball of death and then quits. Try to open new project same result.

  • How to Implement Condition-Based Tax Calculation in R/3 for Mexico

    Is there a manual, or some type of guide to implementing condition-based tax calculation in R/3 for Mexico? Kind regards, Mark Walker