About 50 results
Open links in new tab
  1. Powershell: Move all files from folders and subfolders into single ...

    Jun 27, 2016 · 54 Trying to index and search for a file within 8K files and 2K folders.. Is there a simple Powershell script that can move all files from folders and/or subfolders into one main folder? don't …

  2. Moving files in powershell into different location

    Jun 20, 2022 · Moving files in powershell into different location Asked 3 years, 5 months ago Modified 3 years, 5 months ago Viewed 8k times

  3. How do I move a file to the Recycle Bin using PowerShell?

    When using the rm command to delete files in Powershell, they are permanently deleted. Instead of this, I would like to have the deleted item go to the recycle bin, like what happens when files are

  4. powershell - How do I rename/move items and overwrite even if they ...

    Is there one command to move items (or just rename as both source and destination are in one folder) with forcing overwrite that does work for any item types (leaf, container)? Background: I am wr...

  5. Upload file to SFTP using PowerShell - Stack Overflow

    The way I am envisioning this is to have a script sitting on a server that will be triggered by Windows Task scheduler to run at a specific time (Tuesday) that will grab the file in question upload it to the …

  6. powershell - Progress during large file copy (Copy-Item & Write ...

    Sep 25, 2014 · Is there any way to copy a really large file (from one server to another) in PowerShell AND display its progress? There are solutions out there to use Write-Progress in conjunction with …

  7. powershell - Move files from one folder to another from a list of ...

    Aug 8, 2017 · Move files from one folder to another from a list of filenames from a text file Asked 8 years, 3 months ago Modified 7 years, 2 months ago Viewed 15k times

  8. How to move folder and its content in powershell

    Aug 21, 2014 · I am trying to move one folder and its content from 1 location to another. Name of the folder is c:\\logfiles and it has sub folders and text files, but the script which i have written, it only move...

  9. Move Files older then 31 days to another drive - Stack Overflow

    Move Files older then 31 days to another drive Asked 14 years, 7 months ago Modified 7 years, 2 months ago Viewed 71k times

  10. scripting - Powershell: Move Files recursively - Stack Overflow

    Feb 15, 2012 · As already stated, Move-Item will not overwrite folders so you're left with copying. An alternative solution would be to call Robocopy for each file in your for-each loop with the /MOV …