diff --git a/moviedrop.ps1 b/moviedrop.ps1 index 3cb1b66..2582254 100644 --- a/moviedrop.ps1 +++ b/moviedrop.ps1 @@ -39,6 +39,7 @@ foreach ($movie in $movies) { $targetPath = Join-Path -Path $pathRoot -ChildPath $targetFolder + Write-Host "Move-Item -Path '$($movie.FullName)' -Destination '$($targetPath)'" Move-Item -Path $movie.FullName -Destination $targetPath -Force -ErrorAction Continue | Out-Null } chown cbrand:users $pathRoot \ No newline at end of file