Powershell脚本从.xlsx文件

时间:2018-07-03 14:10:31

标签: excel powershell

我正在尝试编写PowerShell脚本,以获取.xlsx文件的2列。谁能在这里帮助我。

我的.xlsx文件如下所示:

ProductName         ProductCode
----------------------------------------------------------
Java 7 Update 75    {26374892-xxxx-xxxx-xxxx-123456789012}
Java 8 Update 25    {26374892-xxxx-xxxx-xxxx-902341562789}

我想要输出仅逐行写入产品代码的

{26374892-xxxx-xxxx-xxxx-123456789012}
{26374892-xxxx-xxxx-xxxx-902341562789}

1 个答案:

答案 0 :(得分:5)

您可以使用Doug Finke的ImportExcel Module将电子表格导入PowerShell对象以进行操作:

Install-Module importexcel
Import-Excel C:\path\to\spreadsheet.xlsx | Select-Object -ExpandProperty ProductCode