Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $source = "c:tempsource"
  2. $destination = "c:tempdestination"
  3. $file_list = Get-Content "c:tempfile_list.txt"
  4.  
  5. foreach ($file in $file_list)
  6. {
  7. $source = $source + "$file"
  8.  
  9. Copy-Item $source $destination
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement