PowerShell, Sistema de archivos PowerShell $bytes = [System.IO.File]::ReadAllBytes('F:\power\dibujos\1.bmp') foreach($off in $bytes) { $choff=[Char[]]$off Write-Host $off, $choff } 1234567 $bytes = [System.IO.File]::ReadAllBytes('F:\power\dibujos\1.bmp') foreach($off in $bytes){$choff=[Char[]]$offWrite-Host $off, $choff}