เพื่อตอบคำถามแรกของคุณก่อน คุณไม่ปลอดภัยเพียงแค่ติดตั้ง Windows ใหม่เนื่องจากคุณไม่สามารถรับประกันได้ว่าข้อมูลที่เป็นปัญหาจะถูกเขียนทับ
คุณอาจต้องการเขียนทับข้อมูลที่สำคัญ (ถูกลบ) โดยใช้หนึ่งในตัวเลือกที่มี
คุณสามารถใช้คำสั่งDiskPart - Clean All - แต่ตรวจสอบให้แน่ใจว่าคุณรู้ว่าคุณใช้ดิสก์ตัวใด
คุณสามารถ (หลังจากลบข้อมูลที่สำคัญ) ใช้คำสั่งการเข้ารหัสด้วย/W
ตัวเลือก
นอกจากนี้คุณยังสามารถสร้างไฟล์ BAT แบบง่าย ๆ หรือตัวอย่างสองแบบ - ตัวอย่างด้านล่าง
ความคิดเห็นเพิ่มเติมหนึ่งข้อ: หากคุณล้างดิสก์ / ข้อมูล 2-3 ครั้งดังนั้นการเปลี่ยนรูปแบบแม่เหล็กที่เกินกว่าจะจดจำได้แม้แต่คนที่ทรงพลังอย่างไม่น่าเชื่อก็จะไม่สามารถกู้คืนข้อมูลได้
---
@echo off
rem Simple Disk Wipe Utility - wipedfast.bat
rem ---
rem --- 1) Delete all unwanted content from disk, leaving possibly only the command interpreter to run this script.
rem --- 2) Delete content from trashcan/recycled, if any.
rem --- 3) Run this script until it reports file system full.
rem --- 4) Delete WASH*.TMP files on each drive to reclaim space or to rerun utility.
rem --- Do this for all file systems/drives (C:, D:) on system, at least a couple of times.
rem ---
echo Grow file system test (fast / large increments - less secure). See comments in script file.
echo To be done for each drive (C:, D:) on system.
echo Abort with Ctrl-C when disk full and delete WASH-files
echo - Ideally run wipedfast.bat first - then wiped.bat when disk full - before deleting WASH-files.
pause
echo abcdefghijklmnopqrstuvwxyz0987654321ABCDEFGHIJKLMNOPQRSTUVWXYZ > wash_a.tmp
copy wash_a.tmp wash_b.tmp
:start
copy wash_a.tmp+wash_b.tmp wash_c.tmp
del wash_a.tmp
del wash_b.tmp
copy wash_c.tmp wash_a.tmp
ren wash_c.tmp wash_b.tmp
goto start
---
@echo off
rem Simple Disk Wipe Utility - wiped.bat
rem ---
rem --- 1) Delete all unwanted content from disk, leaving possibly only the command interpreter to run this script.
rem --- 2) Delete content from trashcan/recycled, if any.
rem --- 3) Run this script until it reports file system full.
rem --- 4) Delete WASH*.TMP files on each drive to reclaim space or to rerun utility.
rem --- Do this for all file systems/drives (C:, D:) on system, at least a couple of times.
rem ---
echo Wipe file system (slow / small increments - most secure). See comments in script file.
echo To be done for each drive (C:, D:) on system.
echo Abort with Ctrl-C when disk full and delete WASH-files.
echo - Ideally run wipedfast.bat first - then wiped.bat when disk full - before deleting WASH-files.
pause
echo abcdefghijklmnopqrstuvwxyz0987654321ABCDEFGHIJKLMNOPQRSTUVWXYZ > wash_a.tmp
copy wash_a.tmp wash_b.tmp
:start
copy wash_a.tmp+wash_b.tmp wash_c.tmp
del wash_b.tmp
ren wash_c.tmp wash_b.tmp
goto start