Move
Move-Item src.txt dst.txtmove src.txt dst.txtren C:\source\file.txt C:\destination\file.txtrobocopy C:\source C:\destination file.txt /MOV[System.IO.File]::Move("C:\source\file.txt", "C:\destination\file.txt")xcopy C:\source\file.txt C:\destination\file.txt /O /X /Y /H /K && del C:\source\file.txtLast updated