Start-ThreadJob
использует Powershell Runspace, которое, конечно, занимает время и память, хотя и поменьше, чем Start-Job, который фактически ещё один процесс Powershell порождает.Foreach-Object -Parallel
- это всё в рамках одного процесса, но многопоточно[System.Collections.ArrayList]$searchBytes += , $searchHexPattern
>$a = 1..10000
>[System.Collections.ArrayList]$searchBytes = New-Object System.Collections.ArrayList
>measure-command { foreach ($i in $a) { [System.Collections.ArrayList]$searchBytes += $i } }
Milliseconds : 681
TotalMilliseconds : 1681,7805
> [System.Collections.ArrayList]$searchBytes = New-Object System.Collections.ArrayList
> measure-command { foreach ($i in $a) { [void]$searchBytes.Add($i) } }
Milliseconds : 24
TotalMilliseconds : 24,8517
[pscustomobject]@{'search' = 'xxx'; 'replace'='yyy'}
....
command -search $data.search -replace $data.replace
$message = "Завершен процесс: $($process.Name) По причине
\\Server01\process(idle)\% processor time
$process = Get-Process someprocess
$process.PriorityClass = 'Idle'
function Convert-HexStringToByteArray {
param (
[string]$hexString
)
$hexString = $hexString -replace ' ', ''
if ($hexString.Length % 2 -ne 0) {
throw "Invalid hex string length."
}
$byteArray = New-Object System.Collections.ArrayList
for ($i = 0; $i -lt $hexString.Length; $i += 2) {
[void]$byteArray.Add([Convert]::ToByte($hexString.Substring($i, 2), 16))
}
[byte[]]$byteArray
}
[System.Collections.ArrayList]$searchBytes += , $searchHexPattern
[System.Collections.ArrayList]$replaceBytes += , $replaceHexPattern
[void]$searchBytes.Add($searchHexPattern)
[void]$replaceBytes.Add($replaceHexPattern)
[System.Collections.ArrayList]$handledPatterns = Separate-Patterns $patterns
[System.Collections.ArrayList]$searchBytes = $handledPatterns[0]
[System.Collections.ArrayList]$replaceBytes = $handledPatterns[1]
$searchBytes, $replaceBytes = Separate-Patterns $patterns
SearchAndReplace-HexPatternInBinaryFile
как будто всегда возвращает массив, HandleFoundPatternsIndexes -patterns $patterns -foundPatternsIndexes $foundPatternsIndexes
function test([int[]]$p) { write-host $p.getType() $p.Count $p }
test @()
System.Int32[] 0
test 1,2,4
System.Int32[] 3 1 2 4
test $null
param(
[string]$Patterns
)
$realPatterns = $Patterns -split ' '
...
If lpApplicationName is NULL, the first white space–delimited token of the command line specifies the module name. If you are using a long file name that contains a space, use quoted strings to indicate where the file name ends and the arguments begin
FilePath: >D:\test folder\with test file\myfile.exe<
Patterns: >11223344/55667788<
---
PS C:\Windows\system32>
Тоже, думал в эту сторону. Но опций у ffmpeg не нашел таких.
он же вам не принадлежит. Вот также :)