Win 8.1 Lock Up After 5 min, "Memory Management" or "Cache Error"

Systems blue screens every few minutes. MS offered a variety of error messages, now is uniformly "Memory Mangement". Chrome shows a Cache Error.
Any ideas?

Hello again TexasBooster,
It is good to hear from you again!
To contact our technical support, please call at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
I hope this helps!
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!

Similar Messages

  • SOLVED: Can't blank/lock screen after 30 mins - xset s off not working

    I want the monitor screen to blank after 30 minutes of idleness and password lock it.  The password lock works fine, but the screen blanks after 10 minutes.
    Here is what I have in my ~/.xinitrc
    xset s off &
    xset dpms 0 1800 3600 &
    xautolock -time 30 -locker slock -notify 30 &
    Is there something I overlooked?
    Last edited by bpont (2011-12-17 18:02:47)

    karol wrote:
    Not sure what's wrong with your setup, works for me:
    [karol@black ~]$ xset s default
    [karol@black ~]$ xset -q | grep -A2 "Screen Saver"
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 600 cycle: 600
    [karol@black ~]$ xset s off
    [karol@black ~]$ xset -q | grep -A2 "Screen Saver"
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 0 cycle: 600
    For some reason you're using the default timeout even though you have 'xset s off &' in your .xinitrc.
    I don't know what exactly 'xautolock -time 30 -locker slock -notify 30 &' does, try commenting it out and see if it changes anything.
    If you're still stuck, post the whole ~/.xinitrc.
    I did your above test which gave me the same results as you.  The thing is, whenever I reboot, that setting will be lost.
    I think what I'll try next is moving the xset s off command from ~/.xinitrc into ~/.fluxbox/startup
    I will leave xautolock -time 30 -locker slock -notify 30 & in ~/.xinitrc for now.  By the way, what that line does is lock my display after 30 minutes using the 'slock' package and notifies me with a 30 second system alarm warning before it does so.  That way I can press my keyboard or move my mouse to avoid locking my display.
    Edit: Actually, what I ended up doing was simply changing the ordering of commands in my ~/.xinitrc from:
    xset s off &
    xset dpms 0 1800 3600 &
    xautolock -time 30 -locker slock -notify 30 &
    to
    xset dpms 0 1800 3600 &
    xset s off &
    xautolock -time 30 -locker slock -notify 30 &
    and that solved the problem by changing the timeout to 0...not really sure why the ordering of commands matters here, but it worked so I'm changing this thread to SOLVED.
    Karol, thanks for your help in troubleshooting this with me.
    Last edited by bpont (2011-12-17 18:02:08)

  • Pavilion Slimline s5257c-b Win 7 64bit - Locks up after windows update

    I bought this computer for my kids a few years ago at Sam's Club and i cant find any support for it on the HP Support page.  I found that this was not intended for the US, does that sound right?
    It had been working fine until about 6 months ago.  I had Auto Windows Update turned on.  After an update, the pc would start to boot, get the HP splash screen, the Windows graphics and then the screen goes dark.  You expect the accounts screen to come up but you get a black screen with the cursor.  The only way out is to hold down the power button.  It will come up in recovery mode and try to recover its self.  Very rarely happens.  I normally have to go into recover manager and pick a restore point before the windows update.  I have since turned off windows update but every now and then an update gets through.  I have looked for anykind of updates on the HP support site but it does not list the machine.  I've let the support tool search my machine and it does not find the PC only the printer i have installed.
    Any ideas what is going on?
    Thanks
    Ken

    Thanks for the explanation. It makes me feel a little better that could not find it.
    I have not ran a registry cleaner on the computer but this system is primarily the kids to play their games and music. I did run the ms repair utility from the ms website you sent me. It found an error and repaired it. I will create a new restore point and then install the windows updates. Hopefully all will be better.
    Thank you for your time and help. I really appreciate it.

  • After Effect SDK memory managing

    Hello, guys!
    I'm new at AE SDK, so..
    I have, for example, such in sequence memory handle:
    struct
         char* a1;
         char* a2;
    } MyData;
    During sequence setup, i ask host to allocate memory for it:
        PF_Handle    seq_dataH =    suites.HandleSuite1()->host_new_handle(sizeof(MyData));
        if (seq_dataH){
            MyData    *myData = static_cast<MyData*>(suites.HandleSuite1()->host_lock_handle(seq_dataH));
            if (seqP){
                PF_Handle a1_handle    =    suites.HandleSuite1()->host_new_handle(255);
                PF_Handle a2_handle    =    suites.HandleSuite1()->host_new_handle(255);
                myData->a1 = static_cast<char*>(suites.HandleSuite1()->host_lock_handle(a1_handle));
                myData->a2 = static_cast<char*>(suites.HandleSuite1()->host_lock_handle(a2_handle));
                out_data->sequence_data = seq_dataH;
    The question is: how can i release memory for MyData.a1 and MyData.a during SequeceSetdown if i have not appropriate PF_handle's at this moment (i have only sequence_data)? Is next code release ALL my sequence memory (including a1 and a2)
         suites.HandleSuite1()->host_dispose_handle(in_data->sequence_data)
    In general i want to ask if should i keep all memory handles for locking, unlocking, disposing, resizing etc...
    Thx.

    er...
    none of that strikes me as correct... at least in some respects.
    the sequence data is used for two purposes:
    1. storing data that lasts session long for this particular instance of your effect.
    2. storing data with the project, that will be retrieved on the next session, again, for this particular instance.
    so from what i gather from your code (and i may be wrong), it works for the first reason and not the second.
    you define your data structure like so:
    struct
         char* a1;
         char* a2;
    } MyData;
    that means that your data is 2 pointers.
    NOT the content of these points, but the pointers THEMSELVES.
    so when the project is saved and re-loaded, you'll have two pointers that point to a no longer valid piece of memory.
    if you defined:
    struct
         char a1[256];
         char a2[256];
    } MyData;
    and then:
    out_data->sequence_data = PF_NEW_HANDLE(sizeof(MyData));
    then you would now have a handle that stores the content of two 256 char arrays, and not just pointer to such arrays.
    if you do it this way, the content of the two arrays will be stored with the project, and retrieved on the next session.
    what you did is not wrong, it just works for a different purpose.
    and another thing:
    there is the handle_suite, and the memory_suite.
    these should be used for different things. (though they can be interchangeable)
    the handle suite is used for handles provided to you by AE. (i.e. the global_data, sequence_data and frame_data)
    these handles are locked and unlocked for you, whenever AE is calling your plug-in.
    the memory suite is used to manage pieces of memory that are not the 3 handles given by AE.
    that allocated memory is up to you lock, unlock, move and free.
    consider this mixed solution:
    struct
         char a1[256];
         char a2[256];
         char* a3;
         AEGP_MemHandle a3H;
    } MyData;
    out_data->sequence_data = PF_NEW_HANDLE(sizeof(MyData));//allocating the memory
    MyData *myData;//creating a local instance of the structure to work with
    myData = *(MyData**)out_data->sequence_data;//connecting the local structure to the global handle.
    so now the sequence_data handle points to a structure of two ready to use arrays (a1, a2), and one pointer that points to nothing (a3), and a mem handle, to be used soon.
    to associate a chunk of memory to the a3 pointer you should use the memory suite.
    ERR(suites.MemorySuite1()->AEGP_NewMemHandle( NULL,
                                                                                    "a string to be displayed in case of an error",
                                                                                    666, //size of chuck in bytes
                                                                                    AEGP_MemFlag_CLEAR,//use this flag to get a zeroed out chunk
                                                                                    &myData->a3H));
    ERR(suites.MemorySuite1()->AEGP_LockMemHandle(myData->a3H, reinterpret_cast<void**>(&myData->a3)));
    this is it.
    a3 is now the proud owner of 666 bytes.
    all of which will be available until the a3H handle is freed.
    it is now up to you to free that memory.
    you could do that at any time but most likely you'd want to free it during sequence_setdown
    so first you should free a3H. why? because it's handle is stored with with the sequence_data handle, and if you free the sequence_data handle first, you won't have that a3H handle available to free it.
    if(myData->a3H)
    { ERR2(suites.MemorySuite1()->AEGP_UnlockMemHandle(myData->a3H));
      ERR2(suites.MemorySuite1()->AEGP_FreeMemHandle(myData->a3H)); }
    and now you can dispose of the sequence_data:
    PF_DISPOSE_HANDLE(in_data->sequence_data);
    that's it.
    that last thing you should do is lookup PF_Cmd_SEQUENCE_FLATTEN on the SDK guide.
    apart from that, we've made a round trip.

  • An error occured while ran the disco report after 50 mins

    hi all,
    When I try to run the report after 50 mins it throw's an error like below
    "An error occurred while attempting to perform the operation. The operation did not complete suuccessfully"
    Please advice what I can do for getting data.
    Thanks,
    Kamal

    Sounds like it's not able to connect to a server it needs to connect to.   Check to see if all the required servers are up and running and accessible to the network.
    -Tab Alleman

  • Prevent Remote Desktop 2008R2 session from locking after 10 mins of inactivity

    Do you have a screensaver setup?
    GPEDIT -> User configuration -> Administrative templates -> control panel -> display
    Change screen saver to disabled, and screen saver timeout to a high value just in case.
    Sometimes there are issues with screensaver settings stuck there is a reg fix for it as well:[HKEY_CURRENT_USER\Control Panel\Desktop] "ScreenSaverIsSecure"="0"

    Can someone direct me where to prevent the session from locking after 10 mins.  I have read that this is a default behavior of 2008R2.
    Thanks
    This topic first appeared in the Spiceworks Community

  • Hi i have a iPod 5th gen it ran out of charge so as you would i put it on charge however after 25 mins i went over to see it and it wont turn on what so ever. I have held in the lock button and theres no sign of it turning on. Can anyone help? Thanks

    Hi i have a iPod 5th gen it ran out of charge so as you would i put it on charge however after 25 mins i went over to see it and it wont turn on what so ever. I have held in the lock button and theres no sign of it turning on. Can anyone help? Thanks

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                                                       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • Num lock problems after start

    I have just startet my HP Pavilion 500-106eo today with windows 8.1. The problem is, that num lock is off after start and restart, and bios is set correctly to on and value in H-key is 2 ( num lock on after start) I have tried to shut down fast start up and it didn't work either. I can manually set num lock on after start....Help me solve this issue, please.
    This question was solved.
    View Solution.

    Eskil4930, welcome to the forum.
    The reason that you can't change "fast startup" is because you have to click on the phrase at the top of the page "Change settings that are currently unavailable".  Once you click on it the settings that you weren't able to change will become available.  Uncheck "Turn on fast startup (recommended) and close the Control Panel and restart the computer.
    Please click "KUDOS" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Incredibly weird issue, Win 7 account locked out

    Hi folks,
    Ill dive straight in with this one as Ive been working on it since 9am today, with little progress.
    I have USER A who's account locks out without them even being logged into their machine. The user changed their password yesterday as per company policy and since then it keeps locking out after 3-5 minutes.
    Platform - WIN 7
    Pro 64 Bit
    Server - Win Server 2008 R2 Standard
    I have done the following -
    Cleared credential manager - NO DIFFERENCE
    Reset IE
    and cleared personal details during reset - NO DIFFERENCE
    Tested by logging
    onto another machine - NO JOY
    Recreated their login profile - NO
    DIFFERENCE
    Checked for logged on terminal services accounts - NONE LOGGED IN
    Connected devices ie. iPad, iPhone, Android - NONE
    I have checked
    on our DC's and have found the following -
    - System
    - Provider
    [ Name] Microsoft-Windows-Security-Auditing
    [ Guid]
    {54849625-5478-4994-A5BA-3E3B0328C30D}
    EventID 4776
    Version 0
    Level 0
    Task 14336
    Opcode 0
    Keywords
    0x8010000000000000
    - TimeCreated
    [ SystemTime]
    2014-01-14T12:43:53.301501000Z
    EventRecordID 2042599718
    Correlation
    - Execution
    [ ProcessID] 516
    [ ThreadID]
    29720
    Channel Security
    Computer XXXXXXDC02.XXXXXXXXXXXXXX.co.uk
    Security
    - EventData
    PackageName
    MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
    TargetUserName USER A
    Workstation
    XXXXXXXX
    Status 0xc0000234
    I do not think this is an issue with the users machine. The reason I say this is because for one the issue follows the user when they logon to another machine. The second thing is, I took the machine completely off the network, as in disconnected it. Reset
    the users account on the DC and just waited on the DC for 5 minutes. I double clicked into the users account again and under the account tab it was locked out again. What on earth could be causing this?
    Jeet S

    Event ID 4776 Status 0xc0000234 tells us there was a failed attempt because the account was already locked.
    - Have you searched the logs for what computer is doing the lockout?  
    - Is there a possibility that the user is still logged on a different workstation and has it locked?
    Maybe this can help:
    Get the user's distinguishedname:
    $DN = (get-aduser <username> ).distinguishedname
    The check the Object Metadata for that account to find out exactly what time and DC the account was locked out on:
    repadmin /showobjmeta <yourDC> "$DN"
    Look through the results and find the property for "LockoutTime"  (That'll tell you where to look)
    Chris Ream
    If you find my post to be helpful ( or the answer ), Please mark this post appropriately.  Thank you!

  • System lock-ups after upgrading to Tiger

    This topic was previously posted in 'Installation & Setup'.
    After 3 days (and 18 views) I got no replies.
    Maybe that forum was not appropriate, so I decided to try it in this forum.
    About 4 months ago I exchanged my 80 GB Hd in favor of an 200 GB Maxtor 6L200P0. One day later I upgraded OS X 10.3.9 to Tiger (retail DVD).
    At that time I experienced a frequent (several times a day) lock-up of my system.
    No messages, nothing, not even after powering down and restarting.
    After some time I figured out that the lock-ups occurred on Internet access. Clicking on a link in Safari, posting messages on Discussions. Even Mail locked the system a few times. Also Corripio (artwork and lyrics finder for iTunes) caused the system to lock.
    After that, I decided to perform an Archive & Install (first time after almost 4 years of using this Mac). Except from having to re-install a number of 3rd party apps. the system seemed to perform well. No lock-ups were experienced for a few weeks.
    Problem solved, I thought.
    Although far less frequent than before, I do experience those annoying lock-ups a few times a week.
    Here are my questions:
    What could be the cause of the lock-up?
    Is is advisable to perform a Clean Install? What advantage do I have of, it opposite to performing an A&I. I'm reluctant to perform a clean install at the moment, because I haven't found a few serials of commercial and shareware applications yet ( I know, I should have written them down :-/ )
    Any hints/tips to track down the exact cause?
    TIA
    M
    P.S. ( I do have a bootable complete backup of my HD on an Maxtor Onetouch II )

    Hi, M.
    1. You wrote: "What could be the cause of the lock-up?"The number of potential causes range from disk corruption or bad applications to serious hardware problems, such as a defective logic board.
    2. You wrote: "Any hints/tips to track down the exact cause?"I suggest treating the "lock up" problem — better described as a "freezes and hangs" problem — similar to a kernel panic as the basic troubleshooting and hardware testing steps are virtually the same. See my "Resolving Kernel Panics" FAQ.
    It provides a comprehensive roadmap which you should follow from beginning to end, in the order specified in the FAQ.
    2. You wrote: "Is is advisable to perform a Clean Install? What advantage do I have of, it opposite to performing an A&I."The term "Clean Install" does not apply in Mac OS X. That is obsolete Mac OS 9 terminology. The closest Mac OS X equivalent to a "Clean Install" is an Archive and Install with the Preserve User and Network Settings option, which it sounds like you've already tried once previously, but you may want to try again as part of the troubleshooting process I outlined above. See my "General advice on performing an Archive and Install" FAQ for some important tips on this process.
    The other options are:
    • Archive and Install without the Preserve User and Network Settings option: This reinstalls the OS and wipes out both your accounts and your network configuration, but preserves the previous System folder.
    • Erase and Install: Erases the hard drive, i.e. Macintosh HD, and reinstalls the OS from scratch, preserving nothing: your accounts, network settings, and everything else on the drive are deleted.
    Of those two, and since you have a bootable backup, the second (Erase and Install) would be the second-to-last thing you would try, the last being taking the machine in for service.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Intermittent lock up after boot

    My T60 will occasionally lock up after XP boots. No mouse or kbd. I have to press the power button to shut it down and after a reboot, it works fine. IF I play with the mouse cursor as soon as it appears on the screen at boot up, it never locks up. I've tried updating the BIOS, no help. If I start the unit and let it boot up without pressing any keys or moving the mouse cursor, it will lock up.

    Welcome to the forum!
    How's your battery? I had a couple of machines that use to lock up like that due to defective batteries...
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • Satellite U400-22n and Win7 - screen hangs after 5 min

    Hi, This is my first post
    Ive purchased a new U400 with Vista preinstalled, last week ; 2 days ago Ive upgraded to windows 7 32bit professional when I stared Installing it windows prompted me that it requires a full installation , so I done a normal full install, windows 7 installed normally .
    Now my screen hangs after 5 min and windows gos black and reboots after 3-5 min, Ive downloaded all the drivers from the Toshiba site Ive used the auto detect, and installed the drivers one by one and tested if the reboot stops , Ive reinstalled windows now 4-5 time returned my copy to the shop and got a new copy of the windows DVD, its the same,
    Please has some one any advice for me. As the shop Ive perched this from will not upgrade to windows 7 for me.

    hi Mather,
    any bluescreens visible?
    win7 32bit i guess...
    you have to install all the drivers for win7 provided by toshiba in the right order!
    first chipset and patchfiles if available...
    i think a clean install will do the job!
    make sure that the hdd is error free!
    you can upgrade from vista 32bit to win7 32bit
    but no chance to upgrade to a win7 64bit when a vista 32bit is installed...

  • After-market Mini DVI to HDMI adaptor

    Has anyone tried an after market MINI-DVI to HDMI adaptors to run a video signal from the iMac to a TV?
    http://www.monoprice.com/products/product.asp?cid=104&cp_id=10419&cs_id=1041912&pid=4852&seq=1&format=6#faq
    I know Apple wants us to purchase their products...and in this case we'd have to purchase 2 adaptors/Cables (mini DVI to DVI & DVI to HDMI).....seems like a waste as each cable runs around $20 each when I could just easily buy one adaptor for $10 on monoprice.
    For what it's worth, monoprice.com is very reliable, has great prices, fast shipping and very nice products. I use them for all my cable, wire, adaptor needs (and no, i do not work for them either). I used to be very particular about my cables and would fork up tons of money buying monster cables be it of the xbox, home theatre, cable box, HDTV etc all to realise that a cable is a cable, they all pretty much spit out that same quality image or sound regardless. So check 'em out!

    Short ago I bought this adaptor to connect an iMac with my beamer (Mitsubishi HC 1100) and the outcome is - better than ever. Clearly you can say that one adapter is better than two. I can't believe that it took so long until this adaptor was developed. I had been looking for it already one year ago

  • Mac is not connecting to TV after using Mini DisplayPort to HDMI Adapter Cable?

    Macbook Pro is not connecting to TV after using Mini DisplayPort to HDMI Adapter Cable. 2010 Macbook Pro, just purchased Mini DisplayPort to HDMI Adapter Cable from Amazon. Link here: http://www.amazon.com/Mini_Dis-HDMI-CB6-Mini-DisplayPort-Adapter-Cable/dp/B003OC 6LWM/ref=sr_1_2?ie=UTF8&qid=1406238976&sr=8-2&keywords=mac+to+tv --When i connect both ends of the cable to the TV and to the laptop, the screen will blink, but then afterwards it will not mirror on the TV. I have tried going to display setting but cannot find the arrangements tab. When i searched "arrangements" a message said, "The Arrangement tab of Displays preferences is hidden because you only have a single display attached to this computer." Not sure how to fix this problem. I have connected this laptop to a TV before, but with a different cable other than the one i just purchased. Any help would be greatly appreciated, thanks.

    Found the fix.  Still don't know if it was Windows, iTunes, or Norton 360, but this worked immediately for me:
    +++++++++++++++++
    edgravel
    Re: iTunes Store Won't Load, Won't Show Error Message
       Aug 13, 2011 4:32 PM    (in response to Daedalme) 
    I found a solution posted from Rodfromnework for PC users. It worked for me and easy to do.
    Start --> Programs --> Accessories (Right Click on Command Prompt) --> Run as Administrator
    then type in:
    Netsh winsock reset
    Hit enter, restart PC, open iTunes, go to Store
    Hope it works for you too. 

  • How do I set the imac to go to sleep after 5 min of in activity?

    how do I set the imac to go to sleep after 5 min of in activity?

    Hi.
    Try do the following: Go to "Settings" > "Energi" (or what it's called in the english settings). From here you can adjust your settings.
    Hope this was helpful.

Maybe you are looking for

  • Why does itunes 7 not work with my ipod!?

    I am able to oberlook the fact that whenever i plug my 60 gb ipod colour into a pc it doesnt work, and often messes up the pc. But why do i now find that when i plug it into my own pc it wont work with itunes 7, when i googled this problem it seemed

  • MacBook Pro 13" or MacBook Air 13" for Final Cut Pro?

    I am looking at buying either a MacBook Pro 13 inch with 8Gb of RAM, 750 GB, and a 2.8 Ghz i7 Processor or a MacBook Air 13 inch with the 4gb of RAM and a 1.8 Ghz i7 processor. Which is better for Final Cut Pro X? I would rather have the Air, but if

  • No sound playing from the Web

    I have the following: Dell running XP PRO QT version 7.03 I have follow many of the help here and now can play a video and get sound,but I still not get sound from a webiste. I have dechecked the Safe Mode, selected size 24 bit and still no sound fro

  • Changing name of folder

    I have a folder in Photoshop CS2 with the clients name and in it were two folders, RAW and ACCENTS. I imported the RAW file first (Lightroom 1.3, PC, XP Pro) and it showed up with the folder named RAW. I've been trying to rename it to the client name

  • Cannot access Admin Web Tool !!! need suggestion!

    i did install OSB on the DB 11g machine which is running Win 2008 Server. All services are up and running the only problem is that I can not got to Web Tool. Inte observiced log file I have next event: Copyright (c) 1992, 2007, Oracle. All rights res