Powershell管道清单的第一行

时间:2019-03-08 20:10:52

标签: powershell encoding pipe

我想使用powershell和nconvert将一些tiff转换为多页tiff。 我以

开始脚本
  

powershell script.ps1 \ Path \ to \ tiffs

script.ps1的内容是

$path=$args[0]
$File = dir $path\*.tif | foreach {$_.name}
$File | Out-File debug.txt
nconvert.exe -overwrite -o binder.tiff -multi -out tiff -c 7 -l $File

仅在$File的第一行得到错误! 我的假设是,第一行有一个BOM。现在我的问题是如何在没有BOM的情况下将$ File变量转换为ansi或utf8?

0 个答案:

没有答案