PowerShell can easily move files to another folder. Ever want to move files and change the filename or add date tags to the filename? Well, it can be done automatically or manually. Choice is always at the hands of the person doing the task. Manual task is always practical if it is just a few numbers of files. But if the task is repetitive or the files range from hundred to thousand, manual task could be daunting or probably not an option. If the task is repetitive, automation should be a good if it not a best option. If numbers of files are quite large automation is good as well, it saves time and effort. PowerShell is always a friend when it comes to automation and saving time. Here's the PowerShell code to move files without hassle. This code below moves a single file to the folder location specified. ======================= #Get the current date $xdate = Get-Date -UFormat "%Y-%b-%d-%A" #Write-Outpu...
Make the world a better place by sharing knowledge, ideas and anything that you can give that comes from the heart.