If you want to move a file from one folder to another folder by typing the command inside a PowerShell console then do these following steps:
1.) Open up the PowerShell application under admin permissions on windows. You will need this because without the admin’s permission you are not allowed to move the file around within your own computer.
2.) Type in the below command where the file path after the -path’s parameter is the original location of the file and the path after the -Destination parameter is the path where you want your file to move to. Notice that it doesn’t matter whether you use lowercase or uppercase characters in PowerShell because it is not case-sensitive.
MOVE -path E:\bb\DSC02028.JPG -Destination E:\bb\bb1
With the above command, the file has been moved to the destination location.