Clean up some Remmed Lines and Added some Comments

for explanation
This commit is contained in:
Doctair
2024-08-02 12:02:58 -04:00
parent 1bfc4735d3
commit e3bec5ff45
+6 -6
View File
@@ -2946,7 +2946,7 @@ Function Get-USBDrive {
# Convert the input to a float # Convert the input to a float
$ISnumber = [float]$inputChoice $ISnumber = [float]$inputChoice
# Display the entered number # Display the entered number used for Debugging
Write-Host "You selected Disk: $ISnumber" Write-Host "You selected Disk: $ISnumber"
$selectedIndex = $inputChoice - 1 $selectedIndex = $inputChoice - 1
break break
@@ -2959,7 +2959,8 @@ Function Get-USBDrive {
if ($selectedIndex -ge 0 -and $selectedIndex -lt $ExternalHardDiskDrives.Count) { if ($selectedIndex -ge 0 -and $selectedIndex -lt $ExternalHardDiskDrives.Count) {
if ($ExternalDisk.OperationalStatus -eq 'Offline') { #Check if Selected Drive is in an Offline State. Useful when presenting the FFU Driv to Hyper-V VMs and forget to Online Again
if ($ExternalDisk.OperationalStatus -eq 'Offline') {
Write-Warning "Selected Drive is in an Offline State. Please check the drive status in Disk Manager and try again." Write-Warning "Selected Drive is in an Offline State. Please check the drive status in Disk Manager and try again."
exit 1 exit 1
} }
@@ -3041,9 +3042,7 @@ Function New-DeploymentUSB {
} }
try { try {
# $inputChoice = $(Write-Host "Enter the number corresponding to the external hard disk media drive you want to use: " -ForegroundColor DarkYellow -NoNewline; Read-Host)
# Convert the input to a float # Convert the input to a float
$ISnumber = [float]$inputChoice $ISnumber = [float]$inputChoice
@@ -3062,7 +3061,8 @@ Function New-DeploymentUSB {
$SelectedFFUFile = $FFUFiles[$selectedIndex].FullName $SelectedFFUFile = $FFUFiles[$selectedIndex].FullName
break break
} }
else{ else{
#No correct input so prompt again and repeat Checks.
Write-Host "Invalid FFU Number. Please try again." 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 external hard disk media drive you want to use: " -ForegroundColor DarkYellow -NoNewline; Read-Host)
} }