Updated the manuals

This commit is contained in:
Markus Fleschutz
2025-08-07 15:48:27 +02:00
parent b4c21affde
commit d20acb7171
665 changed files with 2601 additions and 2601 deletions

View File

@ -1,12 +1,12 @@
The *copy-broken-file.ps1* Script
===========================
PowerShell Script: *copy-broken-file.ps1*
===================================
This script will copy the specified file even if it contains unreadable blocks caused by device I/O errors and such. The block that it can not read will be replaced with zeros. The size of the block is determined by the buffer. So, to optimize it for speed, use a large buffer. To optimize for accuracy, use a small buffer, smallest being the cluter size of the partition where your sourcefile resides.
Parameters
----------
```powershell
/Repos/PowerShell/scripts/copy-broken-file.ps1 [-SourceFilePath] <String> [-DestinationFilePath] <String> [[-BufferSize] <Int32>] [[-MaxRetries] <Int16>] [-Overwrite] [[-Position] <Int64>] [[-PositionEnd] <Int64>] [-IgnoreBadBlocksFile] [-DeleteSourceOnSuccess] [[-BufferGranularSize] <Int32>] [[-ProgressParentId] <Int32>] [<CommonParameters>]
PS> ./copy-broken-file.ps1 [-SourceFilePath] <String> [-DestinationFilePath] <String> [[-BufferSize] <Int32>] [[-MaxRetries] <Int16>] [-Overwrite] [[-Position] <Int64>] [[-PositionEnd] <Int64>] [-IgnoreBadBlocksFile] [-DeleteSourceOnSuccess] [[-BufferGranularSize] <Int32>] [[-ProgressParentId] <Int32>] [<CommonParameters>]
-SourceFilePath <String>
Path to the source file.
@ -683,4 +683,4 @@ if ($UnreadableBlocks) {
}
```
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:10)*