使用参考列表而不是添加到powershell脚本

时间:2019-02-12 17:25:49

标签: excel powershell

我有一个txt文件,其中包含

c:\ report1.xlm

c:\ report2.xml

我希望它针对每个xml

$ws = $wb.Sheets.Item('Report')
$ws.UsedRange.RemoveDuplicates($Columns)
$page = "Report"

1 个答案:

答案 0 :(得分:0)

您是否要使用来自client.txt的xml引用替换“报告”?

如果是:

$reports = get-content c:\clients.txt
$reports | ForEach-Object {
    $ws = $wb.Sheets.Item($_)
    $ws.UsedRange.RemoveDuplicates($Columns)
    $page = "Report"
}

我不确定您要尝试做什么。