HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

Ventoy2Disk — A tool to create bootable USB drives using ISO files on Windows systems. More information: <https://

Submitted by: @import:tldr-pages··
0
Viewed 0 times
createcommandusbclidrivestoolbootableventoy2disk
windows

Problem

How to use the Ventoy2Disk command: A tool to create bootable USB drives using ISO files on Windows systems. More information: <https://www.ventoy.net/en/doc_windows_cli.html>.

Solution

Ventoy2Disk — A tool to create bootable USB drives using ISO files on Windows systems. More information: <https://www.ventoy.net/en/doc_windows_cli.html>.

Install Ventoy to drive D: with default settings (MBR, Secure Boot enabled):
Ventoy2Disk VTOYCLI /I /Drive:D:


Install Ventoy with GPT partition style and disable Secure Boot:
Ventoy2Disk VTOYCLI /I /Drive:D: /GPT /NOSB


Install Ventoy and reserve 4GB space at the end of the disk:
Ventoy2Disk VTOYCLI /I /Drive:D: /R:4096


Install Ventoy using physical drive number 1 with NTFS filesystem:
Ventoy2Disk VTOYCLI /I /PhyDrive:1 /FS:NTFS


Install Ventoy without USB type checking (for internal drives):
Ventoy2Disk VTOYCLI /I /Drive:D: /NOUSBCheck


Update Ventoy on drive D: while keeping current settings:
Ventoy2Disk VTOYCLI /U /Drive:D:


Perform non-destructive installation (preserve existing data):
Ventoy2Disk VTOYCLI /I /Drive:D: /NonDest


Install Ventoy with all options: GPT, no Secure Boot, 2GB reserved, NTFS, no USB check:
Ventoy2Disk VTOYCLI /I /Drive:D: /GPT /NOSB /R:2048 /FS:NTFS /NOUSBCheck

Code Snippets

Install Ventoy to drive D: with default settings (MBR, Secure Boot enabled)

Ventoy2Disk VTOYCLI /I /Drive:D:

Install Ventoy with GPT partition style and disable Secure Boot

Ventoy2Disk VTOYCLI /I /Drive:D: /GPT /NOSB

Install Ventoy and reserve 4GB space at the end of the disk

Ventoy2Disk VTOYCLI /I /Drive:D: /R:4096

Install Ventoy using physical drive number 1 with NTFS filesystem

Ventoy2Disk VTOYCLI /I /PhyDrive:1 /FS:NTFS

Install Ventoy without USB type checking (for internal drives)

Ventoy2Disk VTOYCLI /I /Drive:D: /NOUSBCheck

Context

tldr-pages: windows/Ventoy2Disk

Revisions (0)

No revisions yet.