CBL Data Shredder can't executed properly in Win10
Try alternate approach: using dd command for windows
First download the utility DD (download) and unzip it.
http://www.chrysocome.net//dd
win+Q search cmd and right click the icon run as an administrator
execute dd --list
List all disk and volumes found in Windows:
rawwrite dd for windows version 0.5.
Written by John Newbigin <jn@it.swin.edu.au>
This program is covered by the GPL. See copying.txt for details
Win32 Available Volume Information
\\.\Volume{1d2d4629-0000-0000-0000-100000000000}\
link to \\?\Device\HarddiskVolume6
fixed media
Not mounted
\\.\Volume{41741c34-0000-0000-0000-100000000000}\
link to \\?\Device\HarddiskVolume13
fixed media
Mounted on \\.\g:
select CORRECT disk and execute following command:
dd bs=1048576 count=1000 of=\\?\Device\HarddiskVolume13 if=/dev/zero --progress
(note: bs=1MB count= how many bs you want to erase)
All data will be erased immediately, so execute command carefully !!!
dd bs=1G count=80 of=\\?\Device\HarddiskVolume10 if=/dev/zero --progress