How to format a new SSD and make it bootable?

oemScript 81 Reputation points
2023-01-01T11:16:30.08+00:00

I would like to know on how to format a new SSD and make it bootable.

Does anyone have any suggestions?

Thanks in advance

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,618 questions
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. Dave Patrick 426.1K Reputation points MVP
    2023-01-01T14:32:56.77+00:00

    You can
    format X: /s
    (where X is the drive letter) other options are listed here.
    https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/format

    --please don't forget to upvote and Accept as answer if the reply is helpful--


  2. Dave Patrick 426.1K Reputation points MVP
    2023-01-01T14:58:55.667+00:00

    /FS:filesystem Specifies the type of file system (FAT, FAT32, NTFS, exFAT, ReFS, or UDF).

    so you can add the switch /fs:ntfs

    --please don't forget to upvote and Accept as answer if the reply is helpful--


  3. Docs 15,141 Reputation points
    2023-01-01T20:05:47.297+00:00

    Typically a new drive will prompt for initialize if it is unallocated (no partitions).

    To use an unallocated drive choose either MBR or GPT.

    Administrative command prompt:

    diskpart
    lis dis
    sel dis N (change the drive number N to the number of the new disk drive)
    clean
    convert GPT
    create par primary
    sel par 1
    format fs=fat32 quick
    assign
    exit

    .
    .
    .
    .
    .

    Please remember to vote and to mark the replies as answers if they help.

    On the bottom of each post there is:

    Propose as answer = answered the question

    On the left side of each post there is /\ with a number: click = a helpful post
    .
    .
    .
    .
    .

    0 comments No comments

  4. Limitless Technology 43,941 Reputation points
    2023-01-03T07:31:08.637+00:00

    Hello there,

    Is the OS installed on the SSD?

    Windows built-in tool does not help on format SSD with Windows operating system installed.

    Disk Management can perform some simple disk and partition operations like create partition, delete partition, format partition, change drive letter, extend or shrink partition. So you can use Disk Management to format SSD on windows,which is very simple and you don’t need to install any third-party software.

    --------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments