Powershell Copy-Item -Destination [duplicate]

本小妞迷上赌 提交于 2021-02-10 23:17:57

问题


Get-ChildItem -Path \\$SiteMachineName\c$\ProgramData\Scripts\log -Recurse |
    Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-40)} |
    select * |
    Select -ExpandProperty FullName |
    Copy-Item -Destination C:\Users\<username>\Desktop\PS

This is the script I'm trying to run, It grabs all the files older then 40 days from the script folder on a remote machine. This part works. The issue is that if I don't have a folder on my desktop named PS, it just creates a file named PS instead of copying all the files to that folder location.

I would like it to create that folder location if it does not exist.

This is not a duplicate adding the -force -Recurse gives the error

Copy-Item : Could not find a part of the path

adding the New-Item to the Destination flag resolved the issue.


回答1:


Try replacing your Copy-Item's Destination flag with a New-Item -force directive:

copy-item -Destination (new-item -type directory -force ("C:\Users\<username>\Desktop\PS")) -force

Source answer



来源:https://stackoverflow.com/questions/48027762/powershell-copy-item-destination

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!