如何使用命令提示符获取.exe的内存

时间:2013-04-03 10:57:05

标签: memory command-line command-prompt

使用命令提示符,如何获取执行.exe时使用的内存。例如,要查找我可以使用.bat文件所用的时间,如下所示:

@echo off
time < nul
Function.exe
time < nul

如何使用内存?

1 个答案:

答案 0 :(得分:0)

试试这个:

@echo off
mem | find "available to MS-DOS"
function.exe
mem | find "available to MS-DOS"

mem命令的输出(示例):

655360 bytes total conventional memory
655360 bytes available to MS-DOS
599312 largest executable program size

1048576 bytes total contiguous extended memory
     0 bytes available contiguous extended memory
941056 bytes available XMS memory
       MS-DOS resident in High Memory Area

顺便说一下。而不是time <nul,您可以使用time /t