Now in the script I must all three copy to Crafty exe's and back. The scrip copy only the first and no OPK is generated. I tried to copy the lines but this doesn't work. I have not enough skills for VB-scripts so I ddon't know what to do.
The part of the script looks like this:
-----------------------------------------------------------------------------------------------------------------
'Manfred Meiler needs to keep ChessMaster in original condition for normal use
'So make once manualy:
'1. the backup The King.EXE The King.bak
'2. copy your Crafty.EXE in CM directory
'Enable the following line, don't forget the 2nd phase
fso.CopyFile CMPath & "Crafty.exe", CMPath & "TheKing333.exe", true 'true for overwriting
fso.CopyFile CMPath & "Crafty.exe", CMPath & "TheKing350.exe", true 'true for overwriting
fso.CopyFile CMPath & "Crafty.exe", CMPath & "TheKing350_64.exe", true 'true for overwriting
'Run ChessMaster and get log file
Set Shell = WScript.CreateObject("WScript.Shell")
Shell.Run CMExe, ,true 'true is for waiting script for application end
'Manfred Meiler 2nd phase
'Enable the following line
fso.CopyFile CMPath & "TheKing333.bak", CMPath & "TheKing333.exe", true 'true for overwriting
fso.CopyFile CMPath & "TheKing350.bak", CMPath & "TheKing350.exe", true 'true for overwriting
fso.CopyFile CMPath & "TheKing350_64.bak", CMPath & "TheKing350_64.exe", true 'true for overwriting
'The ChessMaster is now in original status
---------------------------------------------------------------------------------------------------------------------------
Anybody know what to do with the fso lines? I didn't
