Skip to content

Instantly share code, notes, and snippets.

@vadimkantorov
Last active July 28, 2022 16:09
Show Gist options
  • Save vadimkantorov/ed51b5953c1ab429a3aa06d8b10ff506 to your computer and use it in GitHub Desktop.
Save vadimkantorov/ed51b5953c1ab429a3aa06d8b10ff506 to your computer and use it in GitHub Desktop.
Create a virtual flash drive, format and attach it in Windows
rem diskpart /s attach_virtualusb.diskpart
select vdisk file=C:\Users\vadim\virtualusb.vhd
attach vdisk
assign letter=B
rem diskpart /s create_virtualusb.diskpart
create vdisk file=C:\Users\vadim\virtualusb.vhd maximum=50 type=expandable
select vdisk file=C:\Users\vadim\virtualusb.vhd
attach vdisk
create partition primary
format fs=ntfs label=virtualusb quick
detach vdisk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment