Ein USB Stick in den Computer, via label namen vergeben

 

  1. Insert a USB flash drive into your computer
  2. Start a Command Prompt as an Administrator and type diskpart. This starts the Disk Partition tool which you need to use to format the flash drive. Once you see the DISKPART command prompt, type in the following commands
  3. DISKPART> list disk                                 /* shows list of active disks */
  4. DISKPART> select disk #                         /* # is the number for your USB flash drive */
      1. DISKPART> details disk                            /* Kontrolle ob der richtige Stick definiert worden ist --> Beachte die "Bezeichnung"
  5. DISKPART> clean                                     /* deletes any existing partitions on the USB flash drive */
  6. DISKPART> create partition primary     /* create a primary partition on the USB flash drive */
  7. DISKPART> select partition 1                 /* select the newly created partition */
  8. DISKPART> active                                    /* make the new partition active */
  9. DISKPART> format FS=fat32  label="name" quick               /* format the USB drive with NTFS file system */
  10. DISKPART> assign                                   /* assign a volume and drive letter to the USB drive */
  11. DISKPART> exit                                        /* exit Disk Partition */

At this point, your USB flash drive should be showing up in Windows Explorer and have a drive letter assigned to it, e.g. F:\.

 


Wem das zu kompliziert ist kann auch einfach das Tool Rufus verwenden Rufus - Create bootable USB drives the easy way


 

Quelle: