[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[其他] [已解决]批处理提取16进制字节到TXT文本?

本帖最后由 a574045075 于 2019-11-25 16:10 编辑


如何把若干个nds文件的000Ch-000Fh位置批量提取到TXT文本?

处理后的文本.

本帖最后由 terse 于 2019-11-25 15:07 编辑
  1. $Files = [System.IO.Directory]::EnumerateFiles("$pwd","*.txt")
  2. ForEach($File in $Files )
  3. {
  4.     $Hex = [System.BitConverter]::ToString([IO.File]::ReadAllBytes( "$File")[12..15]) -replace '-', ''
  5.     [IO.File]::AppendAllText("1.txt","$Hex`n")
  6. }
复制代码

TOP

  1. powershell -Command "Get-Item -Path .\*.nds -Filter *.nds | ForEach-Object -Begin { $buff = New-Object System.Byte[] -ArgumentList 4; } -Process { if (!$_.PSIsContainer) { try { $stream = $_.OpenRead(); [void]$stream.Seek(0xc, [System.IO.SeekOrigin]::Begin); $readcount = $stream.Read($buff, 0, $buff.Length); [bitconverter]::ToString($buff, 0, $readcount).Replace('-', ''); }finally { if ($stream) { $stream.Dispose(); } } } } | Set-Content .\1.txt"
复制代码
1

评分人数

微信:flashercs
QQ:49908356

TOP

PS太强大了,现在黑客都是PS

QQ 20147578

TOP

返回列表