Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
431 B

rem
rem This is a sample script to stress prefetcher. On a checked build
rem (so that we always prefetch&trace regardless of launch frequency)
rem first make copies of pfapp.exe using a for loop:
rem
rem for /L %a in (1,1,100) do copy pfapp.exe pfapp_%a.exe
rem
rem then launch this script in the same directory.
rem
for /L %%a in (1,1,1000000) do (
for /L %%b in (1,1,100) do pfapp_%%b.exe -data pfapp_%%b.exe
)