0

我需要为我们的用户共享上的每个用户名获取某个文件:

\\\server\share\username\windows\application Data\MICROSOFT\Proof\custom.dic

我如何编码foreach以使我从根目录通过每个用户名?

4

2 回答 2

1

使用通配符作为用户名:

Get-ChildItem '\\server\share\*\windows\application Data\MICROSOFT\Proof\custom.dic'
于 2012-10-16T18:44:18.247 回答
1

例子:

Get-ChildItem \\computerName\share | ?{$_.PsIsContainer} | %{$localDir='c:\localDir'}{Copy-Item "\\computerName\share\$($_.Name)\a.txt" "$localDir\$($_.Name)_a.txt"}
于 2012-10-16T17:28:15.083 回答