diff --git a/capture.ps1 b/capture.ps1 index b5af527..7b437cb 100644 --- a/capture.ps1 +++ b/capture.ps1 @@ -26,6 +26,7 @@ foreach ($file in $fileList) { $targetParent = Split-Path -Path $targetCopy -Parent if (-not (Test-Path -Path $targetParent)) { New-Item -ItemType Directory -Path $targetParent -Force | Out-Null + Write-Host "Copy-Item -Path '$($file.FullName)' -Destination '$($targetParent)'" Copy-Item -Path $file.FullName -Destination $targetParent } }