CMD

Cards (23)

  • What is the first step to make a flash disk bootable?
    Insert your Flash Drive
  • How do you open CMD as an administrator?
    Right-click CMD and select run as administrator
  • What command do you type to start disk partitioning?
    diskpart
  • What command should you use to view all disks connected to your computer?
    list disk
  • How do you select your flash drive in diskpart?
    Type select disk followed by the disk number
  • What command is used to clean the selected disk?
    clean
  • What command do you use to create a primary partition?
    create partition primary
  • What command activates the partition?
    active
  • What are the steps to make a flash disk bootable using CMD?
    1. Insert your Flash Drive
    2. Open CMD as administrator
    3. Type diskpart
    4. Type list disk
    5. Type select disk <disk number>
    6. Type clean
    7. Type create partition primary
    8. Type active
  • What command is used to format a drive as FAT32 quickly?

    Type format fs=fat32 quick
  • What command is used to format a drive as NTFS quickly?

    Type format fs=ntfs quick
  • Which Windows versions support the FAT32 file system?
    Windows 8.1 and lower versions
  • Why is NTFS required for installing Windows 10?
    Because install.wim is larger than 4GB
  • What is the limitation of FAT32 regarding file sizes?
    It does not support files larger than 4GB
  • What issue might arise when booting from an NTFS disk?
    Not all motherboards support booting from NTFS
  • How can you resolve the issue of booting from NTFS?
    Create 2 partitions: one FAT32, one NTFS
  • What command should you type to format a partition as NTFS quickly?

    Type format fs=ntfs quick
  • Which versions of Windows 10 do not support FAT32?
    Windows 10 versions 1903 and later
  • What command do you type to assign a drive letter in CMD?
    Type assign
  • What should you do after assigning a drive letter?
    Copy Windows files to the flash drive
  • How can you extract a Windows .iso file?
    Use WinRAR to extract it
  • What command do you type to exit CMD?
    Type exit
  • What are the steps to prepare a flash drive for Windows installation?
    1. Format the drive as FAT32 or NTFS.
    2. Assign a drive letter.
    3. Copy Windows files to the drive.
    4. Extract .iso files if necessary.