Rammap - there is command line has multipe command?

Jergen Ross Estaco 1 Reputation point
2021-11-01T12:30:33.88+00:00

i tried all empty option but

i can't working command line parameter following this:

C:\SysinternalsSuite\RAMMap.exe -Ew -Es -Em -Et -E0 (with shortcut)

or Rammap -Ew -Es -Em -Et -E0 (with cmd)

actual reason: opened rammap usage option which this is not correct command. but single Parameters / Arguments is worked.
how can you do multiple command at one line?

anyone know solve this?

Sysinternals
Sysinternals
Advanced system utilities to manage, troubleshoot, and diagnose Windows and Linux systems and applications.
1,087 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. SNOWLY 0 Reputation points
    2024-01-18T15:09:19.7266667+00:00

    You can by writing it in a text file then converting that text file into a bat file

    Example

    @ECHO OFF TITLE Cleaning Ram ECHO Cleaning Your Ram ECHO ========================== ECHO Emptying Working Sets cd C:\SysinternalsSuite\
    ECHO Emptying Working Sets Rammap -Ew ECHO Done! ECHO Emptying Standby List Rammap -Et ECHO Done!

    Etc (continue the code)

    0 comments No comments