Hi guys, I've compiled a .btm batch with te latest version of Take Command (v29), and this .btm runs with the latest version of TCC-RT (v29).
This is the original .cmd batch:
Read more
This is the original .cmd batch:
Code:
SETLOCAL ENABLEEXTENSIONS DISABLEDELAYEDEXPANSION
IF NOT EXIST "%~dp0FOLDER" (
PowerShell -Command "Write-Host [$(Get-Date -Format 'yyyy/dd/MM HH:mm:ss')] ERROR. -NoNewline">>"%~dp0LOG.log" & ECHO/>>"%~dp0LOG.log"
EXIT)
PUSHD "%~dp0FOLDER"
IF NOT EXIST "%~dp0FILE.ini" (
PowerShell -Command "Write-Host [$(Get-Date...
Read more