Virtual Ram

Discussion in 'Gaming' started by Chau, Mar 6, 2006.

  1. Chau

    Chau Well-Known Member

    Posts:
    1,188
    Likes Received:
    0
    Joined:
    Aug 2, 2005
    Is it possible to reserve a amount of ram for specific programs like 250 MB RAM just for a game?

    Chau
     
  2. creeepycripple

    creeepycripple Well-Known Member

    Posts:
    87
    Likes Received:
    0
    Joined:
    Feb 28, 2005
    Location:
    US
    yes and it goes with cpu
    just make a batch script like this

    put this in a text fire edit it first

    @echo off
    cd /d "C:\Program Files\Steam\"
    start /low Steam.exe

    file>save as>
    save as all files and save it as "something.bat"

    and ur good to go if u want it to start up with ur computer put it in ur start up dir
     
  3. Chau

    Chau Well-Known Member

    Posts:
    1,188
    Likes Received:
    0
    Joined:
    Aug 2, 2005
    Code:
    @echo off
    cd /d "C:\Program Files\EA Games\Need for Speed Most Wanted"
    start /C:\Program Files\EA Games\Need for Speed Most Wanted.exe
    
    Is this right? And does it now redirects all (virtual) RAM or all to the game?

    Thanks :D
     
  4. InfiniteGFX

    InfiniteGFX Well-Known Member

    Posts:
    189
    Likes Received:
    0
    Joined:
    Jul 31, 2005
    i believe its
    Code:
    @echo off
    cd /d "C:\Program Files\EA Games\Need for Speed Most Wanted"
    start /low Need for Speed Most Wanted.exe
     
  5. creeepycripple

    creeepycripple Well-Known Member

    Posts:
    87
    Likes Received:
    0
    Joined:
    Feb 28, 2005
    Location:
    US
    for low mem and cpu
    Code:
    @echo off
    cd /d "C:\Program Files\EA Games\Need for Speed Most Wanted"
    start /low Need for Speed Most Wanted.exe
    for high mem and cpu
    Code:
    @echo off
    cd /d "C:\Program Files\EA Games\Need for Speed Most Wanted"
    start /high Need for Speed Most Wanted.exe
    so heres all the parameters

    /low : Starts an application in the idle priority class.

    /normal : Starts an application in the normal priority class.

    /high : Starts an application in the high priority class.

    /realtime : Starts an application in the realtime priority class.

    /abovenormal : Starts an application in the abovenormal priority class.

    /belownormal : Starts an application in the belownormal priority class.
     

Share This Page