From 213da613894e4ff76e75ad525ddf80c24bc107ac Mon Sep 17 00:00:00 2001 From: Doctair Date: Fri, 2 Aug 2024 12:20:17 -0400 Subject: [PATCH] Fix REad-Host Prompt message for FFU selecion --- FFUDevelopment/BuildFFUVM.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FFUDevelopment/BuildFFUVM.ps1 b/FFUDevelopment/BuildFFUVM.ps1 index 39a3b24..a17af1d 100644 --- a/FFUDevelopment/BuildFFUVM.ps1 +++ b/FFUDevelopment/BuildFFUVM.ps1 @@ -3029,7 +3029,7 @@ Function New-DeploymentUSB { } #$inputChoice = Read-Host "Enter the number corresponding to the FFU file you want to copy or 'A' to copy all FFU files" - $inputChoice = $(Write-Host "Enter the number corresponding to the external hard disk media drive you want to use: " -ForegroundColor DarkYellow -NoNewline; Read-Host) + $inputChoice = $(Write-Host "Enter the number corresponding to the FFU file you want to copy or 'A' to copy all FFU files: " -ForegroundColor DarkYellow -NoNewline; Read-Host) Write-Host "You selected FFU: $inputChoice" WriteLog "You selected FFU: $inputChoice" @@ -3066,7 +3066,7 @@ Function New-DeploymentUSB { else{ #No correct input for FFU selection, so prompt again and repeat Checks. Write-Host "Invalid FFU Number. Please try again." - $inputChoice = $(Write-Host "Enter the number corresponding to the external hard disk media drive you want to use: " -ForegroundColor DarkYellow -NoNewline; Read-Host) + $inputChoice = $(Write-Host "Enter the number corresponding to the FFU file you want to copy or 'A' to copy all FFU files: " -ForegroundColor DarkYellow -NoNewline; Read-Host) } } WriteLog "$SelectedFFUFile was selected"