5 lines
173 B
Batchfile
5 lines
173 B
Batchfile
@echo off
|
|
echo "This batch will run testdisk.exe /debug /log"
|
|
echo "The log file testdisk.log will be created in the current directory."
|
|
pause
|
|
testdisk.exe /debug /log
|