PowerShell Export-Csv 无法使用 UseQuotes 参数
PowerShell Export-Csv can't work with UseQuotes parameter
我正在尝试从我的 Powershell 脚本开始:
Import-Csv -Path $filecur -Delimiter ";" | Export-Csv -Path $filenext -Delimiter ";" -NoTypeInformation -Encoding Unicode -UseQuotes Never
但是在执行 Powershell 脚本命令后提示显示下一个文本:
Export-Csv : A parameter cannot be found that matches parameter name 'UseQuotes'.
At C:\Users\vad\Desktop\QuatesDeleter.ps1:4 char:116
+ ... ilenext -Delimiter ";" -notypeinfo -Encoding Unicode -UseQuotes Never
+ ~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Export-Csv], ParameterBindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.ExportCsvCommand
我该如何解决这个问题?
我的电脑是运行 Windows 7, SP1, X64, PowerShell版本是5.1.14409.1005.
在 Microsoft 文档中我找不到有关此问题的一些信息
需要安装 PowerShell 版本 7.x (PowerShell Core)。
我正在尝试从我的 Powershell 脚本开始:
Import-Csv -Path $filecur -Delimiter ";" | Export-Csv -Path $filenext -Delimiter ";" -NoTypeInformation -Encoding Unicode -UseQuotes Never
但是在执行 Powershell 脚本命令后提示显示下一个文本:
Export-Csv : A parameter cannot be found that matches parameter name 'UseQuotes'.
At C:\Users\vad\Desktop\QuatesDeleter.ps1:4 char:116
+ ... ilenext -Delimiter ";" -notypeinfo -Encoding Unicode -UseQuotes Never
+ ~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Export-Csv], ParameterBindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.ExportCsvCommand
我该如何解决这个问题? 我的电脑是运行 Windows 7, SP1, X64, PowerShell版本是5.1.14409.1005.
在 Microsoft 文档中我找不到有关此问题的一些信息
需要安装 PowerShell 版本 7.x (PowerShell Core)。