Answers:
PowerShell 2.0本身安装在任何Windows 7系统上,因此它是可行的。
不幸的是,你必须做一些编程。
$strPath = "D:\test.txt"
Get-Content $strPath -Encoding Byte | ForEach-Object {
$ascii = [CHAR][BYTE]$_
$hex = "{0:X2} " -f $_
$dez = "{0:d} " -f $_
write-host $ascii, $hex, $dez
}
输出(在PowerShell ISE中)