mirror of https://github.com/lianthony/NT4.0
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.
22 lines
391 B
22 lines
391 B
@ECHO OFF
|
|
|
|
IF "%PROCESSOR_ARCHITECTURE%" == "" GOTO DEFAULT
|
|
|
|
|
|
COPY \\TAPISTRESS\STRESS\%PROCESSOR_ARCHITECTURE%\*.* %windir%\SYSTEM32
|
|
GOTO START
|
|
|
|
|
|
|
|
:DEFAULT
|
|
ECHO NO PLATFORM SPECIFIED -- USING I386
|
|
COPY \\TAPISTRESS\STRESS\x86\*.* %windir%\SYSTEM32
|
|
GOTO START
|
|
|
|
|
|
:START
|
|
START SRVAPP /E:50 /F:\\TAPISTRESS\SERVERLOGS /G
|
|
START TCLIENT /A:3 /T:15 /S:0 /H:0 /F:\\TAPISTRESS\CLIENTLOGS
|
|
|
|
:END
|
|
|