Get-ChildItem -Recurse -File -Include *.zip | ForEach { Expand-Archive $_ -DestinationPath . }
$i=0; cat [分割対象ファイル] -ReadCount [行数] | % { $_ > [分割ファイル名]$i.txt;$i++ }
Format-Hex [バイナリファイル]
cat [バイナリファイル] -encoding byte | %{$s=""}{$s+="{0:x2} " -f $_}{echo $s}
Get-Content .\source.txt | ForEach-Object { $_ -replace "FROM_STRING","TO_STRING" } | Out-File .\result.txt -encoding utf8