문제

I want to make a bat file in windows when double click on that it will delete all existing partion even C drive from the computer.

Means it will make the hardisk Empty. Plz suggest me process. How to do this. Thanks in advance

도움이 되었습니까?

해결책

http://www.dban.org/ has a tool to nuke all drives.

A script to do so can be misused...

다른 팁

You cannot delete or format the system and boot partitions from a running Windows. All other partitions can be deleted or formatted using diskpart with a script, e.g.:

C:\>type script.txt
select volume 3
delete volume
exit
C:\>diskpart /s script.txt
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: FOOBAR

Volume 3 is the selected volume.

DiskPart successfully deleted the volume.

Leaving DiskPart...
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top