Script for Ventoy Automation in background

 

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 FolderSoftwaresventoy-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-Host “Enter the USB drive letter (e.g., F:)”

 

# Validate drive letter

if (-Not (Test-Path “$DriveLetter”)) {

    Write-Host “Error: Invalid USB drive letter.”

    exit

}

 

# Prompt for disk number (PhysicalDrive number) Make sure to assign the correct drive number. To check go to diskmgmt.msc and see the drive number 

$DiskNumber = Read-Host “Enter the disk number (e.g., 1 for PhysicalDrive:1)”

 

# Build the command arguments

$CommandArguments = “/I /PhyDrive:$DiskNumber”

 

# Optional: Add more parameters here if needed, for example:

# $CommandArguments += ” /GPT”  # To use GPT partition style

# $CommandArguments += ” /NOUSBCheck”  # To skip USB check

 

# Construct the full command

$Command = “& `”$VentoyExe`” VTOYCLI $CommandArguments”

 

# Execute the command to install Ventoy

Write-Host “Executing Ventoy installation on disk $DiskNumber ($DriveLetter)…”

Invoke-Expression $Command

 

# Check for success

if ($?) {

    Write-Host “Ventoy installation in progress. Please wait for 3 minutes, if you see drive is already formated and openned in file browser please ignore and keep waiting it will automatically start copying iso files after the USB drive is formated correctly…”

    Start-Sleep -Seconds 180  # Wait for 180 seconds (3 minutes)

    Write-Host “Ventoy has been successfully installed on $DriveLetter ($DiskNumber).”

} else {

    Write-Host “Error: Failed to install Ventoy.”

    exit

}

 

# Copy ISO files from the directory to the USB drive ‘Update the ISO directory’

$ISO_Source = “E:Talha’s FolderSoftwaresoperating systems”

$ISO_Destination = “$DriveLetter”

 

# Ensure source directory exists

if (Test-Path $ISO_Source) {

    Write-Host “Copying ISO files from $ISO_Source to $ISO_Destination…”

    Copy-Item “$ISO_Source*.iso” -Destination $ISO_Destination -Recurse -Force

    if ($?) {

        Write-Host “ISO files have been successfully copied to $DriveLetter.”

    } else {

        Write-Host “Error: Failed to copy ISO files.”

    }

} else {

    Write-Host “Error: Source directory for ISO files not found.”

}

 

 

 

 

Run the script by running Power-shell as admin.

 

.FILENAME.ps1

 

If you see error or rights issue

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
 
Change the policy after running the script
 
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Restricted
 

Leave a Reply

Your email address will not be published. Required fields are marked *