Is there a fdisk command in Windows?
In Linux, there is a useful fdisk command.
Is there an analogue for this in Windows? Specifically, I need to use (something like) fdisk -l.
linux windows command-line
add a comment |
In Linux, there is a useful fdisk command.
Is there an analogue for this in Windows? Specifically, I need to use (something like) fdisk -l.
linux windows command-line
add a comment |
In Linux, there is a useful fdisk command.
Is there an analogue for this in Windows? Specifically, I need to use (something like) fdisk -l.
linux windows command-line
In Linux, there is a useful fdisk command.
Is there an analogue for this in Windows? Specifically, I need to use (something like) fdisk -l.
linux windows command-line
linux windows command-line
asked Oct 19 '13 at 17:43
NewbNewb
1892312
1892312
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There is diskpart
[start] [run] diskpart
list disk
Also, there is wmic diskdrive
. You can use that from the command line, but you probably want to apply some filters to avoid ending up with way too much information.
Availability BytesPerSector Capabilities CapabilityDescriptions Caption CompressionMethod ConfigManagerErrorCode ConfigManagerUserConfig CreationClassName DefaultBlockSize Description DeviceID ErrorCleared ErrorDescription ErrorMethodology FirmwareRevision Index InstallDate InterfaceType LastErrorCode Manufacturer MaxBlockSize MaxMediaSize MediaLoaded MediaType MinBlockSize Model Name NeedsCleaning NumberOfMediaSupported Partitions PNPDeviceID PowerManagementCapabilities PowerManagementSupported SCSIBus SCSILogicalUnit SCSIPort SCSITargetId SectorsPerTrack SerialNumber Signature Size Status StatusInfo SystemCreationClassName SystemName TotalCylinders TotalHeads TotalSectors TotalTracks TracksPerCylinder
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE0 5.08 0 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE0 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000000 0 0 10 0 19 L2080BGN154FA1000272 -576210269 79987195904 OK Win32_ComputerSystem CORE 36707 224 156224992 8222368 224
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE1 5.08 1 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE1 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000100 0 0 10 1 63 WQC05071864F9000A2CB 2999965248000 OK Win32_ComputerSystem CORE 364725 255 5859307125 93004875 255
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE2 5.08 2 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE2 1 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000200 0 0 10 2 63 P6901YFP93CC9C000C66 -900772765 144987010560 OK Win32_ComputerSystem CORE 17627 255 283177755 4494885 255
Generic Flash HS-COMBO USB Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE3 4.44 3 USB (Standard disk drives) TRUE Generic Flash HS-COMBO USB Device \.PHYSICALDRIVE3 0 USBSTORDISK&VEN_GENERIC&PROD_FLASH_HS-COMBO&REV_4.4470809103045&1 0 OK Win32_ComputerSystem CORE
Do you know ifdiskpart list disk
orwmic diskdrive
will perform consistency checks on the partition table likesudo fdisk -l
does in Linux?
– pacoverflow
Nov 24 '16 at 4:07
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
add a comment |
OK, there is no doubt that diskpart
is a nice tool for windows partitions, but it looks like it can only read or edit the windows local disk and its patitions, it could not recognize the disk file like MBR
, recovery
, or EBR1
partition file which you see in the linux filesystem;
So there is really exist a tool which match fdisk
a lot in Windows system, it's a cmd tool, this is its name and download website:
GPT fdisk download
and this is its picture of recognize my MBR file:
GPT fdisk screenshot
It has similar syntax with fdisk -l filename
, you can use gdisk64.exe -l filename
.
The download page also include its offical website, you can get more usage form it!
or just use the gdisk64.exe /?
in cmd for more _
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f662392%2fis-there-a-fdisk-command-in-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is diskpart
[start] [run] diskpart
list disk
Also, there is wmic diskdrive
. You can use that from the command line, but you probably want to apply some filters to avoid ending up with way too much information.
Availability BytesPerSector Capabilities CapabilityDescriptions Caption CompressionMethod ConfigManagerErrorCode ConfigManagerUserConfig CreationClassName DefaultBlockSize Description DeviceID ErrorCleared ErrorDescription ErrorMethodology FirmwareRevision Index InstallDate InterfaceType LastErrorCode Manufacturer MaxBlockSize MaxMediaSize MediaLoaded MediaType MinBlockSize Model Name NeedsCleaning NumberOfMediaSupported Partitions PNPDeviceID PowerManagementCapabilities PowerManagementSupported SCSIBus SCSILogicalUnit SCSIPort SCSITargetId SectorsPerTrack SerialNumber Signature Size Status StatusInfo SystemCreationClassName SystemName TotalCylinders TotalHeads TotalSectors TotalTracks TracksPerCylinder
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE0 5.08 0 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE0 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000000 0 0 10 0 19 L2080BGN154FA1000272 -576210269 79987195904 OK Win32_ComputerSystem CORE 36707 224 156224992 8222368 224
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE1 5.08 1 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE1 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000100 0 0 10 1 63 WQC05071864F9000A2CB 2999965248000 OK Win32_ComputerSystem CORE 364725 255 5859307125 93004875 255
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE2 5.08 2 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE2 1 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000200 0 0 10 2 63 P6901YFP93CC9C000C66 -900772765 144987010560 OK Win32_ComputerSystem CORE 17627 255 283177755 4494885 255
Generic Flash HS-COMBO USB Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE3 4.44 3 USB (Standard disk drives) TRUE Generic Flash HS-COMBO USB Device \.PHYSICALDRIVE3 0 USBSTORDISK&VEN_GENERIC&PROD_FLASH_HS-COMBO&REV_4.4470809103045&1 0 OK Win32_ComputerSystem CORE
Do you know ifdiskpart list disk
orwmic diskdrive
will perform consistency checks on the partition table likesudo fdisk -l
does in Linux?
– pacoverflow
Nov 24 '16 at 4:07
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
add a comment |
There is diskpart
[start] [run] diskpart
list disk
Also, there is wmic diskdrive
. You can use that from the command line, but you probably want to apply some filters to avoid ending up with way too much information.
Availability BytesPerSector Capabilities CapabilityDescriptions Caption CompressionMethod ConfigManagerErrorCode ConfigManagerUserConfig CreationClassName DefaultBlockSize Description DeviceID ErrorCleared ErrorDescription ErrorMethodology FirmwareRevision Index InstallDate InterfaceType LastErrorCode Manufacturer MaxBlockSize MaxMediaSize MediaLoaded MediaType MinBlockSize Model Name NeedsCleaning NumberOfMediaSupported Partitions PNPDeviceID PowerManagementCapabilities PowerManagementSupported SCSIBus SCSILogicalUnit SCSIPort SCSITargetId SectorsPerTrack SerialNumber Signature Size Status StatusInfo SystemCreationClassName SystemName TotalCylinders TotalHeads TotalSectors TotalTracks TracksPerCylinder
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE0 5.08 0 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE0 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000000 0 0 10 0 19 L2080BGN154FA1000272 -576210269 79987195904 OK Win32_ComputerSystem CORE 36707 224 156224992 8222368 224
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE1 5.08 1 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE1 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000100 0 0 10 1 63 WQC05071864F9000A2CB 2999965248000 OK Win32_ComputerSystem CORE 364725 255 5859307125 93004875 255
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE2 5.08 2 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE2 1 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000200 0 0 10 2 63 P6901YFP93CC9C000C66 -900772765 144987010560 OK Win32_ComputerSystem CORE 17627 255 283177755 4494885 255
Generic Flash HS-COMBO USB Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE3 4.44 3 USB (Standard disk drives) TRUE Generic Flash HS-COMBO USB Device \.PHYSICALDRIVE3 0 USBSTORDISK&VEN_GENERIC&PROD_FLASH_HS-COMBO&REV_4.4470809103045&1 0 OK Win32_ComputerSystem CORE
Do you know ifdiskpart list disk
orwmic diskdrive
will perform consistency checks on the partition table likesudo fdisk -l
does in Linux?
– pacoverflow
Nov 24 '16 at 4:07
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
add a comment |
There is diskpart
[start] [run] diskpart
list disk
Also, there is wmic diskdrive
. You can use that from the command line, but you probably want to apply some filters to avoid ending up with way too much information.
Availability BytesPerSector Capabilities CapabilityDescriptions Caption CompressionMethod ConfigManagerErrorCode ConfigManagerUserConfig CreationClassName DefaultBlockSize Description DeviceID ErrorCleared ErrorDescription ErrorMethodology FirmwareRevision Index InstallDate InterfaceType LastErrorCode Manufacturer MaxBlockSize MaxMediaSize MediaLoaded MediaType MinBlockSize Model Name NeedsCleaning NumberOfMediaSupported Partitions PNPDeviceID PowerManagementCapabilities PowerManagementSupported SCSIBus SCSILogicalUnit SCSIPort SCSITargetId SectorsPerTrack SerialNumber Signature Size Status StatusInfo SystemCreationClassName SystemName TotalCylinders TotalHeads TotalSectors TotalTracks TracksPerCylinder
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE0 5.08 0 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE0 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000000 0 0 10 0 19 L2080BGN154FA1000272 -576210269 79987195904 OK Win32_ComputerSystem CORE 36707 224 156224992 8222368 224
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE1 5.08 1 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE1 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000100 0 0 10 1 63 WQC05071864F9000A2CB 2999965248000 OK Win32_ComputerSystem CORE 364725 255 5859307125 93004875 255
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE2 5.08 2 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE2 1 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000200 0 0 10 2 63 P6901YFP93CC9C000C66 -900772765 144987010560 OK Win32_ComputerSystem CORE 17627 255 283177755 4494885 255
Generic Flash HS-COMBO USB Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE3 4.44 3 USB (Standard disk drives) TRUE Generic Flash HS-COMBO USB Device \.PHYSICALDRIVE3 0 USBSTORDISK&VEN_GENERIC&PROD_FLASH_HS-COMBO&REV_4.4470809103045&1 0 OK Win32_ComputerSystem CORE
There is diskpart
[start] [run] diskpart
list disk
Also, there is wmic diskdrive
. You can use that from the command line, but you probably want to apply some filters to avoid ending up with way too much information.
Availability BytesPerSector Capabilities CapabilityDescriptions Caption CompressionMethod ConfigManagerErrorCode ConfigManagerUserConfig CreationClassName DefaultBlockSize Description DeviceID ErrorCleared ErrorDescription ErrorMethodology FirmwareRevision Index InstallDate InterfaceType LastErrorCode Manufacturer MaxBlockSize MaxMediaSize MediaLoaded MediaType MinBlockSize Model Name NeedsCleaning NumberOfMediaSupported Partitions PNPDeviceID PowerManagementCapabilities PowerManagementSupported SCSIBus SCSILogicalUnit SCSIPort SCSITargetId SectorsPerTrack SerialNumber Signature Size Status StatusInfo SystemCreationClassName SystemName TotalCylinders TotalHeads TotalSectors TotalTracks TracksPerCylinder
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE0 5.08 0 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE0 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000000 0 0 10 0 19 L2080BGN154FA1000272 -576210269 79987195904 OK Win32_ComputerSystem CORE 36707 224 156224992 8222368 224
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE1 5.08 1 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE1 2 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000100 0 0 10 1 63 WQC05071864F9000A2CB 2999965248000 OK Win32_ComputerSystem CORE 364725 255 5859307125 93004875 255
512 {3, 4} {"Random Access", "Supports Writing"} LSI 9750-8i DISK SCSI Disk Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE2 5.08 2 SCSI (Standard disk drives) TRUE Fixed hard disk media LSI 9750-8i DISK SCSI Disk Device \.PHYSICALDRIVE2 1 SCSIDISK&VEN_LSI&PROD_9750-8I____DISK5&15EE98A3&0&000200 0 0 10 2 63 P6901YFP93CC9C000C66 -900772765 144987010560 OK Win32_ComputerSystem CORE 17627 255 283177755 4494885 255
Generic Flash HS-COMBO USB Device 0 FALSE Win32_DiskDrive Disk drive \.PHYSICALDRIVE3 4.44 3 USB (Standard disk drives) TRUE Generic Flash HS-COMBO USB Device \.PHYSICALDRIVE3 0 USBSTORDISK&VEN_GENERIC&PROD_FLASH_HS-COMBO&REV_4.4470809103045&1 0 OK Win32_ComputerSystem CORE
edited Oct 19 '13 at 18:01
answered Oct 19 '13 at 17:47
HennesHennes
59.1k792141
59.1k792141
Do you know ifdiskpart list disk
orwmic diskdrive
will perform consistency checks on the partition table likesudo fdisk -l
does in Linux?
– pacoverflow
Nov 24 '16 at 4:07
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
add a comment |
Do you know ifdiskpart list disk
orwmic diskdrive
will perform consistency checks on the partition table likesudo fdisk -l
does in Linux?
– pacoverflow
Nov 24 '16 at 4:07
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
Do you know if
diskpart list disk
or wmic diskdrive
will perform consistency checks on the partition table like sudo fdisk -l
does in Linux?– pacoverflow
Nov 24 '16 at 4:07
Do you know if
diskpart list disk
or wmic diskdrive
will perform consistency checks on the partition table like sudo fdisk -l
does in Linux?– pacoverflow
Nov 24 '16 at 4:07
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
I never used them on broken partitions or tested for that.
– Hennes
Nov 25 '16 at 9:37
add a comment |
OK, there is no doubt that diskpart
is a nice tool for windows partitions, but it looks like it can only read or edit the windows local disk and its patitions, it could not recognize the disk file like MBR
, recovery
, or EBR1
partition file which you see in the linux filesystem;
So there is really exist a tool which match fdisk
a lot in Windows system, it's a cmd tool, this is its name and download website:
GPT fdisk download
and this is its picture of recognize my MBR file:
GPT fdisk screenshot
It has similar syntax with fdisk -l filename
, you can use gdisk64.exe -l filename
.
The download page also include its offical website, you can get more usage form it!
or just use the gdisk64.exe /?
in cmd for more _
add a comment |
OK, there is no doubt that diskpart
is a nice tool for windows partitions, but it looks like it can only read or edit the windows local disk and its patitions, it could not recognize the disk file like MBR
, recovery
, or EBR1
partition file which you see in the linux filesystem;
So there is really exist a tool which match fdisk
a lot in Windows system, it's a cmd tool, this is its name and download website:
GPT fdisk download
and this is its picture of recognize my MBR file:
GPT fdisk screenshot
It has similar syntax with fdisk -l filename
, you can use gdisk64.exe -l filename
.
The download page also include its offical website, you can get more usage form it!
or just use the gdisk64.exe /?
in cmd for more _
add a comment |
OK, there is no doubt that diskpart
is a nice tool for windows partitions, but it looks like it can only read or edit the windows local disk and its patitions, it could not recognize the disk file like MBR
, recovery
, or EBR1
partition file which you see in the linux filesystem;
So there is really exist a tool which match fdisk
a lot in Windows system, it's a cmd tool, this is its name and download website:
GPT fdisk download
and this is its picture of recognize my MBR file:
GPT fdisk screenshot
It has similar syntax with fdisk -l filename
, you can use gdisk64.exe -l filename
.
The download page also include its offical website, you can get more usage form it!
or just use the gdisk64.exe /?
in cmd for more _
OK, there is no doubt that diskpart
is a nice tool for windows partitions, but it looks like it can only read or edit the windows local disk and its patitions, it could not recognize the disk file like MBR
, recovery
, or EBR1
partition file which you see in the linux filesystem;
So there is really exist a tool which match fdisk
a lot in Windows system, it's a cmd tool, this is its name and download website:
GPT fdisk download
and this is its picture of recognize my MBR file:
GPT fdisk screenshot
It has similar syntax with fdisk -l filename
, you can use gdisk64.exe -l filename
.
The download page also include its offical website, you can get more usage form it!
or just use the gdisk64.exe /?
in cmd for more _
answered Jan 22 at 16:39
knightyunknightyun
112
112
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f662392%2fis-there-a-fdisk-command-in-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown