我把这个拼凑在一起,但有点卡住了。代码将项目放置在根目录而不是它来自的文件夹中,即如果它位于测试文件夹中,则将其直接放置在用户文件夹中,我希望它创建一个测试文件夹并将项目放在那里。在它复制了项目后,我希望它压缩该位置。有一次我在想我可以创建一个 txt 文件,然后用它来复制项目,但后来我迷路了。
$PCName = Read-Host "Enter Machine Name"
$User = Read-Host "Enter User Name"
$NAS = "\\<nas>\users\$user"
$Dir = get-childitem \\$PCName\C$\users\$User -force -recurse | where {
$_.extension -match "doc|xls|docx|xlsx|pdf|pst|txt|jpg|tif"} | ForEach {
Copy-Item $_.FullName -Destination $NAS -force -ErrorAction:SilentlyContinue
}
#$Dir | ft fullname | out-file C:\Scripts\logs\FileList\$User.txt
$Dir | format-table name# PowerShell script to list the DLL files under the system32 folder