HCI Memtest script

Soldato
Joined
9 Dec 2006
Posts
9,289
Location
@ManCave
hey all,

i bought the memtest pro to save me opening multiple instances, whilst it can automate the testing of memtest is does not create a process per thread. it just creates multiple instances and calculates how much ram to test (its a pain to open 32 up on every reboot!)

so for anyone who wants to run a easy process per thread here you go
1. change 30 to the amount of cores/threads you have/want to test
2. change 950 to the amount of ram per thread to test.
3. change folder location of memtestpro

Code:
@echo off
setlocal enableextensions enabledelayedexpansion

cd C:\"folderlocation"

set /a "x = 0"
:while1
    if %x% leq 30 (
        echo %x%
        set /a "x = x + 1"
    start memTestPro.exe /t950
        goto :while1
    )
endlocal



for people with standard version of the memtest
least it will open the amount of processes for you

3. change folder location of memtestpro

Code:
@echo off
setlocal enableextensions enabledelayedexpansion

cd C:\Users\Smogsy\Downloads\MemTestPro\

set /a "x = 0"
:while1
    if %x% leq 30 (
        echo %x%
        set /a "x = x + 1"
    start memTest.exe
        goto :while1
    )
endlocal
 
Back
Top Bottom