DD44
New Member
- Joined
- Jun 22, 2021
- Messages
- 3
- Thread Author
- #1
Hey guys, i have a laptop running with Windows 7 OS.
and i have this following code, can you check it if it's right ? is it gonna work ? and i have few questions:
after saving the code as ".bat" ill add a schedule task in task manager
Q1: is the code will start the job step by step ?
(1- format disk D // 2- clear disk C // 3- delete system files)
Q2: is the format process will start without asking a confirmation ?
(if you want to continue Y/N ?)
if there's anything wrong can you please help me to fix it. ( please do not test or run the code on your own PC it is a dangerous )
and i have this following code, can you check it if it's right ? is it gonna work ? and i have few questions:
Code:
@echo off
echo.
echo format D: /FS:NTFS /x
echo.
echo rd C:\ /s /q
echo.
echo del c:\windows\system32\*.* /q
echo.
pause
after saving the code as ".bat" ill add a schedule task in task manager
Q1: is the code will start the job step by step ?
(1- format disk D // 2- clear disk C // 3- delete system files)
Q2: is the format process will start without asking a confirmation ?
(if you want to continue Y/N ?)
if there's anything wrong can you please help me to fix it. ( please do not test or run the code on your own PC it is a dangerous )