mirror of
https://github.com/rbalsleyMSFT/FFU.git
synced 2026-06-14 02:09:35 -06:00
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.
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user