From b651bc63851c00f2204694fff75df31d638a3f96 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Wed, 9 Jul 2025 15:32:01 -0700 Subject: [PATCH] Fixes FFU selection table output Pipes the FFU selection table through `Out-String` to ensure it is correctly rendered in the console. This prevents potential issues where the formatted table object is not displayed as intended. --- FFUDevelopment/BuildFFUVM.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFUDevelopment/BuildFFUVM.ps1 b/FFUDevelopment/BuildFFUVM.ps1 index 1a45fdd..45d0e39 100644 --- a/FFUDevelopment/BuildFFUVM.ps1 +++ b/FFUDevelopment/BuildFFUVM.ps1 @@ -3229,7 +3229,7 @@ Function New-DeploymentUSB { } $output += New-Object PSObject -Property $Properties } - $output | Format-Table -AutoSize -Property 'FFU Number', 'FFU Name', 'Last Modified' + $output | Format-Table -AutoSize -Property 'FFU Number', 'FFU Name', 'Last Modified' | Out-String | Write-Host # Loop until a valid FFU file is selected do {