Update cheatsheets

This commit is contained in:
ivuorinen
2024-10-08 00:16:55 +00:00
parent 34878bb630
commit 31e38d1972
26 changed files with 539 additions and 6 deletions

25
tldr/windows/sdelete Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# sdelete
> Securely delete file/directory from disk, or clean the free space on a volume/physical disk.
> More information: <https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete>.
- Delete files with 3 [p]asses:
`sdelete -p 3 {{path o ile1 path o ile2 ...}}`
- Delete folders and its [s]ubdirectories with 1 pass (default):
`sdelete -s {{path o\directory1 path o\directory2 ...}}`
- Clean the free space of volume D: with 3 [p]asses:
`sdelete -p 3 D:`
- Clean the free space with [z]eros of physical disk 2, which should not contain any volumes to be cleaned:
`sdelete -z 2`