@echo off @echo ============================================================================== @echo = Chkcpu(32) Report generator = @echo ============================================================================== @echo. if exist chkcpu32.exe goto winchk if exist chkcpu.exe goto doschk goto error :winchk chkcpu32.exe /s @echo CPU Found! chkcpu32.exe >> mycpu32.txt chkcpu32.exe /v >> mycpu32.txt chkcpu32.exe /d >> mycpu32.txt @echo. >> mycpu32.txt chkcpu32.exe /s >> mycpu32.txt @echo. >> mycpu32.txt @echo. >> mycpu32.txt chkcpu32.exe /x >> mycpu32.txt @echo. @echo ============================================================================== @echo = A report log of this CPU has been made and stored in the file mycpu32.txt. = @echo = In case of problems with chkcpu32, please send this report to the author. = @echo = The e-mail address is: J.Steunebrink@net.hcc.nl = @echo = Thanks for your cooperation! Your report will be used to improve chkcpu32. = @echo = Regards, Jan Steunebrink. = @echo ============================================================================== goto done :doschk chkcpu.exe /s @echo CPU Found! chkcpu.exe >> mycpu.txt chkcpu.exe /i >> mycpu.txt chkcpu.exe /v >> mycpu.txt chkcpu.exe /d >> mycpu.txt @echo. >> mycpu.txt chkcpu.exe /s >> mycpu.txt @echo. >> mycpu.txt @echo. @echo ============================================================================== @echo = A report log of this CPU has been made and stored in the file mycpu.txt. = @echo = In case of problems with chkcpu, please send this report to the author. = @echo = The e-mail address is: J.Steunebrink@net.hcc.nl = @echo = Thanks for your cooperation! Your report will be used to improve chkcpu. = @echo = Regards, Jan Steunebrink. = @echo ============================================================================== goto done :error @echo ============================================================================== @echo = ERROR: The Chkcpu(32).exe program was not found. No report was generated. = @echo = Please copy Chkcpu(32).exe to the same folder as the Report.bat file and = @echo = run Report.bat again. = @echo ============================================================================== :done @echo. pause