This script will automate the process of ventoy USB creation. You need to modify the path of Ventoy and ISO files. At the start of execution you will be asked to define the USB drive letter and disk number. After that the process will be started in the background you will not see anything until the process is done. Copy b below code and paste it into notepad and save as FILENAME.ps1 # Script To install Ventoy and Copy ISO Files automatically by Talha Ali # Set the permanent Ventoy path 'Make sure to update the Location of Ventoy application' $VentoyPath = "E:\Talha's Folder\Softwares\ventoy-1.0.99" # Ensure the Ventoy executable exists in the specified path $VentoyExe = Join-Path $VentoyPath "Ventoy2Disk.exe" if (-Not (Test-Path $VentoyExe)) { Write-Host "Error: Ventoy2Disk.exe not found in the specified path." exit } # Prompt for USB drive letter 'Make sure USB is already formated and have a drive letter' $DriveLetter = Read-...