robocopy d:\ c:\data 24h2Update.txt 1aidaAuto*.txt 1aidaAuto*.bat dismChecks.bat 2RenameComputer.txt.txt
robocopy d:\aida64engineer830_portable c:\data\aida64engineer830_portable /E
robocopy d:\ c:\data occt.exe
c:\data\aida64engineer830_portable\aida64.exe /SST CPU,FPU,Cache,RAM,Disk,GPU /SSTDUR 1
@echo off
title Restart Confirmation
color 0A

:: Prompt the user with a timeout of 60 seconds
choice /C YN /M "Do you want to restart the computer? (Y/N)" /T 60 /D Y

:: Check the errorlevel returned by CHOICE
if errorlevel 2 (
    echo Restart canceled by user.
    pause
    exit /b
) else (
    echo Restarting in 5 seconds...
    timeout /t 5 /nobreak >nul
    shutdown /r /t 0
)




