Warning of insufficient memory in my laptop

1 month ago I bought a HP 15-N203. I got three matches (1) Assassin creed 4. (2) look at the dogs. (3) Dishonred. I never had the problem of memory, but today I uninstalled it Assassin's creed 4 and watch dogs because I had finished playing. Now I have Dishonred, so while I was playing the game I got the following message:

Your computer is low on memory-save and close files or restart.

I'm really confused, because when I had three games on my laptop I never had these problems and now I only have 1 game and it gives me not enough memory problem... My specs are:

2core 4500U i7 clocked at 1.8 Ghz

8 GB ram

1 TB harddrive

8.1 64-bit Windows

NVIDIA 740 m

Please help me because I'm really worried about my laptop.

That could be a possibility very probably too. I mean look your system spec for me, shouldn't make mistakes of memory in most of the games. In fact, you could probably run the most graphically intense with high settings, you may have low FPS, or even a few spikes offset, but not memory error.

Let me know if it happens to come back or not.

Tags: Notebooks

Similar Questions

  • HP Streasm: Warning of insufficient memory on HP Stream

    I sometimes get a fake "Memory" read in point 8.1 of Windows.  I concluded it's a bug in Windows 8.1 has still not been fixed.  The warning may appear at any time and requires no open program other than windows functions-use basis.  The documented problem indicates that there is not enough memory at all but 'virtual memory' aka, pagefile.  My swap file had been set to automatic and read between 1996 MB and MB 3096 when checked before.  My sister-in-law also gets the same error reading on his HP flow.  The experimental only work around that I have tried is to manually set the pagefile to 3000 MB minimum and maximum of 5000 MB.  Why should I still do if Windows is supposed to manage this function?  Memory is never a problem, because I have never more than one program open at the same time except my antivirus in the background.  In fact, I have never had no problem when I actively use the program Google Earth Gobeurs of memory.  The only time wherever I saw the warning message appears is when the laptop is sitting temporarily idle without program upward except maybe a benign game like Spider Solitaire on the screen.  Review of real memory always reads less than 50% usage.  Am I missing something here?

    Thanks for any help.

    Validated solutions that above probably will not solve problems with low memory.

  • After I install my laptop bootcamp has restarted and said there was a problem and restart your laptop then I check my memory of the laptop and my mac 210 GB is 180 GB and when I checked the scores he had only a mac partition

    After installing bootcamp my laptop has rebooted and said there was a problem and restart your laptop then I check my memory of the laptop and my mac 210 GB is 180 GB and when I checked partitions there was only a mac partition and I can't get back the deleted memory

    Post a screenshot of what shows utility disk to disk

    How to take a screenshot on your Mac - Apple Support

    OSX works OK?

  • 4S does not update ios9.2.1 because of insufficient memory. I have 27.8 G available?

    4S does not update ios9.2.1 because of insufficient memory. I have 27.8 G available?

    Hello

    What ios you run now if its ios 7 or above, you can update your WiFi

    If its below ios7 then you must use your PC for the update.

    See you soon

    Brian

  • upgrade memory on my laptop HP 15-d073nr

    I have a memory of 4 GB I want to speed up upgrading the GB of memory on my laptop HP 15 - d073nr.  I need to know how to add and how to access the memory card.

    Hi chiefcc

    You can install up to 8GB 1x8GB, the procedure is in the manual (page 61) and check the format to see if this applies to your computer

    Use the module memory 8 GB which can be found in the manual of your laptop or certificatesas Kingston.

    http://h10032.www1.HP.com/CTG/manual/c04341736.PDF

    Kingston system memory for HP/Compaq 15-specific series Notebook 15-d073nr

  • 'Insufficient memory '.

    "Whenever I'm playing a game, it crashes and says 'insufficient memory' or '" memory ", your probably low space hard drive but I have enough space and the Task Manager shows no problems with my RAM or other problems of memory, what can I do about it?

    Try to play the game with a clean boot before:

    1. Log the computer by using an account with administrator rights.
    2. Click Start , type msconfig.exe in the Start Search box and press ENTER to start the System Configuration utility.
      If you are prompted for an administrator password or for confirmation, type your password, or click continue .
    3. On the general tab, click Selective startup , and then clear the Load Startup items check box. (The box use the Boot file is not available.)
    4. On the Services tab, select the hide all Microsoft services check box, and then click disable all .
    5. Click OK , and then click restart
  • CVI8.5 crashes with failure 'insufficient memory' after compilation

    Hello

    I used the 8.5 CVI to compile my project in debug mode.

    Before the last my latest changes short I could run the project without any problems.

    Now after beeing ready with the compilation nothing happens for awhile, then ICB crashes and an 'insufficient memory' message appears, sometimes a "a reminder of custom control triggered an exception" message.

    I noticed that in the moment just before the output of cams message memory the size of memory used virual windows goes suddenly to 2.86 GB.

    The pc has 2 GB of physical memory and 6 GB of virtual memory, at the same time is available free memory.

    If I change the debug to zero level, the software is functioning normally, so I think that there is no failure in the code.

    What is the problem?

    Hello JR,.

    Thanks for your message, you're totally right!

    After that I added a few features the problem had disappeared.

    The failure seems to be fixed in CVI 9.0, because the project has worked without adding features.

    I tried with different keyword in the forum, but I have not found this answer.

    Maybe it was the problem in finding that the theme of the threat has nothing to do with my problem.

    Thank you

    Torsten

    Solution of the top link (another Thread) as information to third parties:

    ================================================================================================================================================================

    Posted by LuisG, proven Active veteran, 19/11/2008 18:33

    Hi Trevor,

    Thank you for the presentation of your test program. I was able to reproduce the 'out of memory' you were see and so I investigated this problem first. I'll try to tackle the problem of the acquisition of data/timer tomorrow.

    I confirm that this is a bug in CVI which was previously unknown - and which has been around for a long time, without being detected. The conditions that cause this bug manifest itself are extremely rare, but you were still 'chance' to replicate. Fortunately, there's a pretty easy fix that you can do which should make these conditions disappear.

    The problem occurs when, at some point during the connection phase, an internal memory allocation is requested for a list of the imported symbols, if the list size is between symbols 8187 and 8189. In the case of your project, it happened to be 8188. This list includes all the symbols that your project defines and also imports from all libraries (including the CVI libraries) associated with the project. It turns out when you added the new source file, the total came to be 8188. It depended entirely on what is in your project, of course, but also on the specific version of the CVI, you use.

    A workaround is to add some free in your source file functions, such as the total number of symbols will change. For example, I added the following code to myAsyncTimer.c, which was enough to no longer trigger the bug:

    void foo (Sub)
    {
    }
    foo1 Sub (Sub)
    {
    }
    foo2 Sub (Sub)
    {
    }
    void foo3 (void)
    {
    }
    void foo4 (void)
    {
    }
    void foo5 (void)
    {
    }

    I'm still sorry for the double trouble. I will then consider the other problem, and I'll let know you when I have more information.

    Luis

    ================================================================================================================================================================

  • It will not play a video cd due to 'insufficient memory' I closed the programs on the taskbar - did not help! What can I do... or how to clear the memory?

    I am running Win 7 on my emachine, and this is the first time, he will not play a video cd due to 'insufficient memory' I closed the programs on the taskbar - did not help!  What can I do... or how to clear the memory?  anyone?

    Hi Ernie,.

    First, you use any type of applications to run your videos?

    Also check links theses below, you may find them useful. (Click on it)

    How to prevent out of memory problems

    A guide to increase the speed of your computer

    I hope this helps.

  • Is it possible to have more memory on my laptop?

    I would like to have more memory on my laptop, is that possible?

    Depends, see the specifications of your computer laptop manufacturers or their support pages to see what max memory is supported

    Win information system what current memory appears?

  • How can I get more memory on my laptop?

    How can I get more memory on my laptop?

    Uh, buy it

    Care to be more specific?

  • insufficient memory due to unbalanced layer 6 extractions?

    insufficient memory due to 6 extractions unbalanced layer? »

    Got this message when I leave on AE.  Immediately open the file again, and he seemed to agree.  And I closed it again without incident.

    During this time with CS4, I'm a little lost.

    I used to be able to manipulate the cache in memory (with the parameter 'Secret') and set it to "empty the cache after each frames [].

    Now, I can't.  I have to manually clear the cache after that I have do the preview of files big effects.

    What happened to the setting that allow me to set the cache the thememory?  I'm still able to reduce the number of cancellations, which helps.

    insufficient memory due to unbalanced layer 6 extractions?

    You use a specific plug-in? This sometimes happens with effects that references the other layers, particles for example custom in particular.

    I used to be able to manipulate the cache in memory (with the parameter 'Secret') and set it to "empty the cache after each frames [].

    The option is always there. Now doesn't Shift on entering the Preferences menu not show? If for some reason you can't, you can manually change the file:

    ["Main Pref Section"]
    
        "Pref_PURGE_EVERY_N_FRAMES" = 0000
    

    Just assign some value you need.

    Mylenium

  • Would like to upgrade memory on my laptop HP2000

    I have a HP2000 I bought a year ago.  It has 4g of memory that is not being sufficient for a CS PhD project that I'm trying.  Since I was a student, I don't have enough money to buy another computer laptop everything.  So, is it possible to get another 2g of memory installed on this laptop?  Can I do the installation myself (the guarantee has already been canceled by my Linux installation on this machine a year ago) for everything I want to buy is the part, not installation. Is this possible?

    Hello

    HP 2000 is a series of several models, what is yours? In any case, based on the following link, a typical 200-HP can have 8 GB of RAM:

    http://h10010.www1.HP.com/wwpc/ca/en/Ho/WF06b/321957-321957-3329744-3848802-3848802-5091493-5128938.html?DNR=1

    There are a few questions that must be addressed:

    1. What is the OS of your machine? 32 bit OS may not consider what it is more than 4 GB in this case.

    2. What is the current configuration? 2 x 2 or 4 x 1 because the machine has only 2 slots for RAM. From there, you can work our the number you need.

    You can view the following link to buy the RAM in your computer:

    http://www.crucial.com/upgrade/HP-memory/HP+2000+series-models.html

    Kind regards.

  • New video card and memory for my laptop (1410-604)

    Hello

    I think of a new video card and an extra memory...
    What possibilities I have to upgrade my laptop (Satellite 1410-604).

    I checked my computer technical description:
    I think I can add an extra 256 MB SDRAM. But what video card?

    Koen

    Hello guys

    It s not possible to update the graphics card. You can't compare the desktop with a laptop PC. The graphics card on the laptop is a small chip that attaches to the motherboard.

    On the upgrade memory: you can upgrade the memory maximum. 512 MB (2x256MB). There are 2 slots available and these modules of memory are supported:
    PC2100 128 MB (PA3126U - 1 M 12)
    PC2100 256 MB (PA3127U - 1 M 25)

  • A barrette added MEMORY makes the laptop no power up

    Howdy all

    I have a T450s, I just removed the HARD drive and replaced by an SSD, works very well.

    Now I want to add 8 GB for for the 12 GB max RAM, I bought this from amazon...

    Crucial 8 GB DDR3 single 1600 MT/s (PC3-12800) CL11 SODIMM 204 pins 1.35V/1.5V Notebook Memory CT102464BF160B

    I think it is compatible, I talked to a girl at crucial, and she said it was. BUT... when I add, the laptop of dead acts, power button does nothing, no noise, no light, nothing.

    Does anyone have any ideas or advice to help?

    Too bad. I thought about it. If you plug in before power on/off, it works. Battery alone, it wouldn't. Now it starts normally.

  • Computer laptop 15-F033wm: Max (vivid RAM) memory for computer laptop 15-f033wm?

    I've looked everywhere, and the guide does not load correctly.

    I was considered to be the upgrade of my physical memory (RAM), although I can't find the maximum amount for my OS.

    I currently have a Samsung 4 GB 1333 MHz memory and an Intel (r) Celeron (r) CPU N2830 @ microproccesor 2.16 GHz.

    I have a laptop HP (f033wm) 15. I run Windows 10, 64-bit.

    The max is 4 GB? I wanted to move to a 8 GB of RAM, because a "spec" site called I got a 8 GB of maximum memory. I wanted an official confirmation, and I saw this as the way.

    8 GB is the maximum. Because it's N Pentium/Celeron series 'Trail Bay', it has only a single memory slot. The Service Manual shows a memory access panel on the bottom of the laptop so to reach the memory should not be a great test as it is on some similar models.

    Try this link for the Service Manual:

    Manual

    If it's 'the Answer' please click on 'Accept as Solution' to help others find it.

Maybe you are looking for