Several months ago I put together a small script "copyBIT.bat" which places BIT files in the required folders.
this has been running successfully on Windows XP rigs for a while now, however, due to Vista being as (un)popular as it is, I have been tasked with rewriting the same script to be used with Vista, with a required version for both 32bit and 64bit editions.
However, as I have just returned from paternity leave after the birth of my first baby girl, I have an extremely high workload to get through and just simply cannot meet the required deadline.
If anybody out there has a spare hour or two, please feel free to analyse my script and edit to to make it work as it should with Vista 32 and 64bit versions.
I will be most greatful.
this has been running successfully on Windows XP rigs for a while now, however, due to Vista being as (un)popular as it is, I have been tasked with rewriting the same script to be used with Vista, with a required version for both 32bit and 64bit editions.
However, as I have just returned from paternity leave after the birth of my first baby girl, I have an extremely high workload to get through and just simply cannot meet the required deadline.
If anybody out there has a spare hour or two, please feel free to analyse my script and edit to to make it work as it should with Vista 32 and 64bit versions.
I will be most greatful.
- - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - -
CopyBIT.bat
- - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - -
CopyBIT.bat
- - - - - - - - - - - - - - - - - - - - - - - -
@ECHO OFF
REM Creates C:\burnintest and Copies BIT files and Key.dat to c:\burnintest
ECHO Copying BIT files to c:\burnintest
MKDIR c:\burnintest
XCOPY %mtcd%\bit\bitpro\*.* c:\burnintest /E /Y
REM Creates PassMark\BurnInTest folders under My Documents and places LastUsed.bitcfg within
ECHO Creating MTtests.bitcfg...
MKDIR "%USERPROFILE%\My Documents\PassMark\BurnInTest"
XCOPY %mtcd%\bit\bitpro\LastUsed.bitcfg "%USERPROFILE%\My Documents\PassMark\BurnInTest" /y
REM Copies bit.bat and rembit.bat to C:\Windows\
ECHO Copying bit.bat and rembit.bat and to C:\WINDOWS\...
COPY %mtcd%\bit\bit.bat %windir% /Y
COPY %mtcd%\bit\rembit.bat %windir% /Y
REM Creates C:\burnintest and Copies BIT files and Key.dat to c:\burnintest
ECHO Copying BIT files to c:\burnintest
MKDIR c:\burnintest
XCOPY %mtcd%\bit\bitpro\*.* c:\burnintest /E /Y
REM Creates PassMark\BurnInTest folders under My Documents and places LastUsed.bitcfg within
ECHO Creating MTtests.bitcfg...
MKDIR "%USERPROFILE%\My Documents\PassMark\BurnInTest"
XCOPY %mtcd%\bit\bitpro\LastUsed.bitcfg "%USERPROFILE%\My Documents\PassMark\BurnInTest" /y
REM Copies bit.bat and rembit.bat to C:\Windows\
ECHO Copying bit.bat and rembit.bat and to C:\WINDOWS\...
COPY %mtcd%\bit\bit.bat %windir% /Y
COPY %mtcd%\bit\rembit.bat %windir% /Y