1
0
mirror of https://github.com/ChrisTitusTech/winutil.git synced 2025-04-04 10:12:09 +00:00

Improve error output

This commit is contained in:
CodingWonders 2024-10-02 17:31:28 +02:00
parent 5c22816e61
commit 02d5d433be

View File

@ -37,7 +37,9 @@ function Copy-Files {
}
Write-Progress -Activity "Copy Windows files" -Status "Ready" -Completed
} catch {
Write-Warning "Unable to Copy all the files due to unhandled exception:"
Write-Warning $psitem.Exception.ToString()
Write-Host "Unable to Copy all the files due to an unhandled exception" -ForegroundColor Yellow
Write-Host "Error information: $($_.Exception.Message)`n" -ForegroundColor Yellow
Write-Host "Additional information:" -ForegroundColor Yellow
Write-Host $PSItem.Exception.StackTrace
}
}