Using DiskPart.exe As Disk Management Alternative in Windows Vista, 2000, 2003 and XP Verwenden von Diskpart.exe als Festplatte Management Alternative in Windows Vista, 2000, 2003 und XP

Disk Management under Computer Management in Administrator Tools is a GUI (Graphical User Interface) based disk partitioning utility that allows Windows 2000, Windows 2003 Windows XP and Windows Vista users to set active partition, change drive letter and paths, extend volume, shrink volume, delete volume, and format the drives. Festplatten-Management unter Computerverwaltung im Administrator-Tools ist ein GUI (Graphical User Interface) auf Basis der Partitionierung der Festplatte Dienstprogramm, das Windows 2000, Windows XP, Windows 2003 und Windows Vista-Benutzer, um aktive Partition, Laufwerkbuchstaben und-pfade ändern, erweitern, Lautstärke, Lautstärke schrumpfen, Volume löschen, und formatieren Sie die Laufwerke. However, Disk Management extension in Microsoft Management Console (MMC) does not always work properly. Allerdings Disk Management Extension in der Microsoft Management Console (MMC) nicht immer richtig funktioniert. Problems faced by users including random grayed out or disabled of Extend Volume and Shrink Volume options, as Disk Management snap-in prohibits you from inadvertently performing actions that may result in data loss. Probleme der Benutzer, einschließlich zufällige ausgegraut, deaktiviert oder Verlängern der Band und Schrumpffolien Band Optionen, wie Disk-Snap-In verbietet Sie versehentlich die Durchführung von Aktionen, die möglicherweise zu Datenverlust führen.

If you’re getting frustrated with Disk Management, try out DiskPart utility, a text-mode command line interpreter based on scripts to manage, create, delete and resize objects such as disks, partitions and volumes in Windows Vista, XP, 2003 and 2000. Wenn Sie sich frustriert mit dem Festplatten-Management, ausprobieren Diskpart Nutzen, einen Text-Modus-Befehlszeile-Interpreter basierend auf Skripten zu verwalten, erstellen, löschen und die Größe Objekte wie Festplatten, Partitionen und Volumes in Windows Vista, XP, 2003 und 2000 Werden. (Later 3 operating systems do not install with DiskPart.exe by default, so users need to (Später 3 Betriebssysteme nicht installieren mit Diskpart.exe standardmäßig, so dass Nutzer müssen download and install DiskPart manually Downloaden und installieren Sie manuell Diskpart ). As DiskPart is a command line utility, users will have to use various commands to instruct DiskPart to perform a disk related task. Wie Diskpart ist ein Befehlszeilen-Dienstprogramm, werden die Nutzer haben die Verwendung verschiedener Kommandos Diskpart beauftragen, um eine Platte im Zusammenhang Aufgabe. Users can use HELP command to list out all available commands for DiskPart. Die Benutzer können mit Hilfe Befehl zur Liste alle verfügbaren Befehle für Diskpart. For various options for a command, append the command name to HELP, ie HELP [command] , or simply type the command name itself only. Für verschiedene Optionen für einen Befehl, hängen Sie den Befehl Namen zu helfen, dh help [Befehl], oder tippen Sie einfach den Befehl selbst nur Namen. For detailed explanation and guide to use the command, append the full command syntax to the HELP, ie HELP [full command syntax with option] . Für detaillierte Erklärung und Anleitung zur Verwendung des Befehls, hängen Sie die vollständige Befehlssyntax auf die Hilfe, dh Hilfe [vollständige Befehlssyntax mit der Option].

Diskpart

For easy reference and getting start guide, here’s some simple operation that you can perform on your hard disk and partition or volume with DiskPart. Für einfache Referenz-und bekommen Start Guide, hier ein paar einfache Bedienung, können Sie auf Ihrer Festplatte und Partition oder einem Volume mit Diskpart. But before you continue, make sure that you backup important files and programs in case of any failure. Aber bevor Sie fortfahren, vergewissern Sie sich, dass Sie Backup wichtiger Dateien und Programme im Falle eines Scheiterns.

  1. Start and Run DiskPart Start und Ausführen Diskpart

    To run DiskPart, type DiskPart.exe in Start Search in Windows Vista, or in Run command text box in Windows 2000, 2003 and XP finished off by Enter key. So führen Sie Diskpart, geben Sie Diskpart.exe auf Suche starten in Windows Vista, oder im Befehl "Ausführen" Textfeld in Windows 2000, 2003 und XP fertig ausschalten, indem Enter-Taste. A command prompt window with DISKPART shell is loaded. Eine Eingabeaufforderung Fenster mit Diskpart Shell geladen wird.

  2. List all disks on system in DiskPart Liste aller Festplatten im System auf Diskpart

    To all your available installed hard disks on the system, simply type list disk , and hit Enter. Um alle verfügbaren installiert Ihre Festplatten auf dem System, geben Sie einfach Liste der Festplatte, und drücken Sie die Eingabetaste.

  3. Select and set target disk to use in Disk Part Wählen Sie und stellen Sie Festplattenbetrieb auf den Einsatz in Disk-Teil

    To set and select a disk which you want to work with in DiskPart, use the following command syntax: So stellen Sie ein, und wählen Sie die Diskette mit dem Sie arbeiten möchten in Diskpart, verwenden Sie die folgende Befehlssyntax:

    select disk <disk number (###)> select disk <disk Zahl (###)>

    The disk number is retrieved from “list disk” command. Die Festplatte ist Zahl "Von" list disk "-Befehl.

  4. Create a partition with DiskPart Erstellen Sie eine Partition mit Diskpart

    If the hard disk is empty without any partition or still has unallocated space, a partition can be created on it with the following command syntax: Wenn die Festplatte ist leer, ohne Partition oder noch nicht zugewiesenen Raum, eine Partition erstellt werden kann es mit dem folgenden Befehl Syntax:

    create partition <partition type> [size=<n>] [offset=<n>] [id={<byte> | <guid>}] [align=<n>] [noerr] Partition erstellen <partition type> [size = <n>] [offset = <n>] [ID = (<byte> | <guid>)] [align = <n>] [noerr]

    The partition types that are supported are primary partition (the only bootable type, but limited to four per hard disk), extended partition (also limited to four per hard disk to supplement those need more than 4 primary partitions), logical drive (to define within extended partition to allow many volumes to be created), EFI system partition and MSR (Microsoft Reserved partition). Die Partition Typen, die unterstützt werden primäre Partition (die einzige bootbare Art, sondern beschränkt sich auf vier pro Festplatte), erweiterte Partition (auch beschränkt auf vier pro Festplatte zu ergänzen die brauchen mehr als 4 primäre Partitionen), logische Laufwerk (zur Definition innerhalb der erweiterten Partition zu ermöglichen viele Bände zu schaffen), EFI System-Partition und MSR (Microsoft vorbehalten Partition). Note that not all options are available for all partition type. Beachten Sie, dass nicht alle Optionen sind verfügbar für alle Partitionstyp.

    Example: create partition primary size=1000 (Create a primary partition with the size of 10GB.) Beispiel: primäre Partition erstellen size = 1000 (Erstellen Sie eine primäre Partition mit der Größe von 10 GB.)

  5. Create a volume in DiskPart Erstellen Sie eine Menge in Diskpart

    DiskPart allows user to create RAID (RAID-5) volume using three or more specified dynamic disks, simple volume or striped volume using two or more specified dynamic disks. Diskpart erlaubt Benutzer zu erstellen, RAID (RAID-5) Volume mit drei oder mehreren bestimmten dynamischen Datenträgern, einfache Volumen oder gestreifte Volume mit zwei oder mehreren bestimmten dynamischen Datenträgern. The syntax for the command is: Die Syntax für den Befehl lautet:

    create volume <volume type> [size=<n>] disk=<n>,<N>,<n>[,<n>[,...]] [align=<n>] [noerr] Volumen schaffen <volume type> [size = <n>] = <n> Festplatte, <N>, <n> [, <n> [,...]] [align = <n>] [noerr]

    Example: create volume raid size=1000 disk=1,2,3 (Create a RAID-5 array volume with 1 GB (1000MB) using disk 1, 2 and 3.) Beispiel: create Volumen raid size = 1000 disk = 1,2,3 (Erstellen eines RAID-5-Array Volumen mit 1 GB (1000MB) Festplatte mit 1, 2 und 3).

  6. List all volumes in DiskPart Liste aller Bände in Diskpart

    Use the following command to list all volumes in order to check which number is associated with the volume we want to work with: Verwenden Sie den folgenden Befehl zur Liste aller Bände, um zu überprüfen, welche Zahl ist im Zusammenhang mit dem Volumen wollen wir arbeiten mit:

    list volume Liste Volumen

  7. Select a volume to manage in DiskPart Wählen Sie ein Volumen zu verwalten in Diskpart

    Use the following command to select a volume in order to manage (shrink, extend, delete format) the volume: Verwenden Sie den folgenden Befehl, um eine Menge in Ordnung zu verwalten (warm, zu ergänzen, zu löschen Format) das Volumen:

    select volume <number> select volume <number>

    The number for the volume is retrieved from “list volume” command. Die Zahl für die Lautstärke wird aus "Volume"-Befehl.

  8. List all partitions in DiskPart Liste aller Partitionen auf Diskpart

    Use the following command to list all partitions in order to check which number is associated with the partition we want to work with: Verwenden Sie den folgenden Befehl zur Liste aller Partitionen, um zu überprüfen, welche Zahl ist im Zusammenhang mit der Partition Wir wollen mit:

    list partition Liste Partition

  9. Select a partition to manage in DiskPart Wählen Sie eine Partition zu verwalten in Diskpart

    Use the following command to select a volume in order to manage (shrink, extend, delete format) the partition: Verwenden Sie den folgenden Befehl, um eine Menge in Ordnung zu verwalten (warm, zu ergänzen, zu löschen-Format) der Partition:

    select partiton <number> Wählen Sie Partition <number>

    The number for the partiton is retrieved from “list partition” command. Die Zahl für die Partition ist aus "-Liste-Partition"-Befehl.

  10. Shrink a volume (reduce size of partition) in DiskPart Shrink einem Volumen (Verringerung der Größe der Partition) in Diskpart

    To reduce the size of the volume with focus by the specified amount and makes free disk space available from unused space at the end of the volume, use following command syntax: Zur Reduzierung der Größe des Volumens mit Schwerpunkt von den angegebenen Betrag und macht freier Speicherplatz zur Verfügung aus nicht verwendeten Speicherplatz am Ende des Bandes, verwenden Sie folgende Befehlssyntax:

    shrink [desired=<n>] [minimum=<N>] [nowait] [noerr] schrumpfen [= gewünschten <n>] [Minimum = <N>] [NOWAIT] [noerr]

    Example: shrink desired=500 minimum=250 (Shrink volume by 500 MB, with 250 MB as minimum size to be freed if not possible.) Beispiel: schrumpfen gewünschte Minimum = 500 = 250 (Shrink Volumen von 500 MB, 250 MB als Mindestgröße zu werden freigegeben, wenn nicht möglich.)

    To check and determine how much is the maximum number of bytes that a volume can be reduced by (the free space that is available on the volume), use following command: Zu überprüfen und festzustellen, wie hoch ist die maximale Anzahl von Bytes, die ein Volumen reduziert werden kann durch (den freien Raum, ist auf das Volumen), verwenden Sie folgenden Befehl ein:

    shrink querymax [noerr] schrumpfen querymax [noerr]

  11. Extends the volume or partition (increase size) in DiskPart Erstreckt sich das Volumen oder Partition (es zu vergrössern) in Diskpart

    To extend the volume or partition with focus and its file system into free (unallocated) space which can be used to store data on a disk, use following command syntax: Die Ausweitung des Volumens oder Partition mit Fokus und ihre Dateisystem in den freien (nicht zugewiesenen) Raum genutzt werden kann zum Speichern von Daten auf einer Festplatte, verwenden Sie folgende Befehlssyntax:

    extend [size=<n>] [disk=<n>] [noerr] verlängern [size = <n>] [disk = <n>] [noerr]

    The above command works on when both volume or partition is selected. Der obige Befehl funktioniert, wenn beide in Lautstärke oder Partition ausgewählt ist.

    Example: extend size=500 (Increase the size of current partition or volume selected by 500MB.) Beispiel: Verlängerung size = 500 (Zunahme der Größe der aktuellen Partition oder Volumen von 500 MB.)

  12. Delete partition or volume with DiskPart Partition löschen oder das Volumen mit Diskpart

    Note that system, boot or any volume/partition that contains the active paging file or crash dump (memory dump) cannot be deleted. Beachten Sie, dass die System-, Start oder einem Volume / Partition, in dem sich die aktive Auslagerungsdatei oder Crash-Dump (Speicherauszug) können nicht gelöscht werden. And users must select a partition or volume before start deletion operation. Und müssen die Benutzer wählen Sie eine Partition oder einem Volume vor Beginn Streichung Betrieb. Dynamic disks should be removed by using “delete volume” command. Dynamische Festplatten sollten beseitigt werden durch die Verwendung von "Volume löschen"-Befehl.

    delete partition Partition löschen

    delete volume Volume löschen

  13. Format a volume or partition in DiskPart Formatieren einer Partition oder Volumen in Diskpart

    Simply select a partition or volume, and then type Format . Wählen Sie einfach eine Partition oder einem Volume, und geben Sie anschließend Format.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. WICHTIG: Es handelt sich um eine Maschine der Seite übersetzt wird "as is" ohne Garantie. Machine translation may be difficult to understand. Maschinelle Übersetzung ist vielleicht schwierig zu verstehen. Please refer to Bitte wenden Sie sich an original English article Original Englisch Artikel whenever possible. wann immer dies möglich ist.

Share and contribute or get technical support and help at Aktie und einen Beitrag oder erhalten technische Unterstützung und Hilfe an My Digital Life Forums Meine digitalen Lebens Foren . Werden.



3 Responses to “Using DiskPart.exe As Disk Management Alternative in Windows Vista, 2000, 2003 and XP” 3 Antworten auf "Verwenden von Diskpart.exe als Festplatte Management Alternative in Windows Vista, 2000, 2003 und XP"

  1. saleem Saleem
    September 30th, 2007 04:27 30. September 2007 04:27
    1

    Hi,

    I have 180GB with windows vista installed, if I try to create or shrink partition for linux like: Ich habe 180GB mit Windows Vista installiert ist, wenn ich versuche zu erstellen oder zu verkleinern Partition für Linux wie:

    keep 80 GB for Windows & rest for Linux. halten 80 GB für Windows & Rest für Linux.

    I use the “create partition” but when i give the size=100000 or 80000 this says size is too large ! Ich benutze den "Partition erstellen", aber wenn ich die size = 100000 oder 80000, sagt dieser Größe ist zu groß!

    Anyhelp please Anyhelp bitte

    regards, Grüße,
    —saleem - Saleem

  2. Big Al Big Al
    October 24th, 2007 16:47 24. Oktober 2007 16:47
    2

    You can’t shrink a partition with this tool under Windows 2000, this seems to be a Vista-only feature. Sie können nicht schrumpfen eine Partition mit diesem Tool unter Windows 2000, scheint dies ein Vista-only-Funktion.

  3. JA Siebrecht JA Siebrecht
    March 19th, 2008 17:16 19. März, 2008 17:16
    3

    Dit is de grootste onzin die ik ooit gelezen heb!!! Dit is de grootste onzin sterben VFAV ik heb gelezen!

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Sie können diese Tags: <a href= title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Abonnieren ohne zu kommentieren


Custom Search

New Articles Neue Artikel

Incoming Search Terms for the Article Eingehender Suchbegriffe für den Artikel

vista diskpart Vista diskpart - -- diskpart vista diskpart Vista - -- DiskPart.exe Diskpart.exe - -- diskpart shrink diskpart schrumpfen - -- diskpart gui diskpart GUI - -- Diskpart syntax Diskpart Syntax - -- diskpart.exe vista Diskpart.exe Vista - -- diskpart diskpart - -- disk part Teil der Festplatte - -- diskpart download diskpart Download - -- diskpart.exe shrink Diskpart.exe schrumpfen - -- diskpart in Vista diskpart in Vista - -- vista diskpart shrink Vista diskpart schrumpfen - -- vista diskpart.exe Vista Diskpart.exe - -- diskpart.exe download Download Diskpart.exe - -- shrink partition windows 2003 Schrumpf-Partition Windows 2003 - -- all alle - -- shrink partition xp Schrumpf-XP-Partition - -- vista extend volume disabled Vista erweitern Volumen deaktiviert - -- using diskpart mit diskpart - -- server 2003 shrink partition Server 2003 schrumpfen Partition - -- shrink volume windows 2003 schrumpfen Volumen Windows 2003 - -- diskpart vista download diskpart Vista-Download - -- diskpart shrink windows 2003 diskpart schrumpfen Windows 2003 - -- diskpart shrink volume diskpart schrumpfen Volumen - -- shrink volume in xp Schrumpf-Volumen in XP - -- windows vista diskpart Windows Vista diskpart - -- diskpart shrink XP diskpart schrumpfen XP - -- diskpart shrink download diskpart schrumpfen Download - -- shrink windows 2003 partition schrumpfen Windows 2003 Partition - -- diskpart windows download diskpart Windows-Download - -- download diskpart Download diskpart - -- shrink partition Schrumpf-Partition - -- windows 2003 shrink partition Windows 2003-Partition verkleinern - -- download vista diskpart Download Vista diskpart - -- disk management vista Disk Management Vista - -- diskpart shrink partition xp diskpart XP-Partition verkleinern - -- vista disk part Vista Teil der Festplatte - -- using diskpart in vista mit diskpart in Vista - -- vista diskpart help Vista diskpart Hilfe - -- shrink volume on XP schrumpfen des Volumens auf XP - -- diskpart set active diskpart auf aktiv gesetzt - -- using diskpart.exe mit Diskpart.exe - -- diskpart shrink 2003 diskpart schrumpfen 2003 - -- download diskpart for Vista Download diskpart für Vista - -- diskpart shrink windows xp diskpart schrumpfen Windows XP - -- diskpart shrink vista diskpart schrumpfen Vista - -- download diskpart.exe vista Download Diskpart.exe Vista - -- download diskpart.exe Download Diskpart.exe - -- diskpart.exe example Beispiel Diskpart.exe - -- xp shrink partition XP-Partition verkleinern - -- diskpart shrink server 2003 diskpart schrumpfen Server 2003 - -- list disk Liste der Festplatte - -- shrink xp volume schrumpfen XP Volumen - -- using diskpart vista mit diskpart Vista - -- vista disk management command line Vista-Disk-Management Befehlszeile - -- format using diskpart Format mit diskpart - -- increase partition vista Erhöhung Partition Vista - -- vista partition diskpart Vista Partition diskpart - -- diskpart shrink drive diskpart Schrumpf-Laufwerk - -- diskpart shrink disk diskpart schrumpfen Festplatte - -- extend volume greyed out Volumen verlängern grau dargestellt - -- vista Diskpart Vista Diskpart - -- using vista diskpart Vista mit diskpart - -- windows vista partition limit Windows Vista Partitionen Limit - -- diskpart shrink partition diskpart schrumpfen Partition - -- vista diskpart active Vista aktive diskpart - -- windows vista disk management Windows Vista-Disk-Management - -- diskpart set active partition diskpart Set aktive Partition - -- shrink partition windows xp Schrumpf-Partition Windows XP - -- diskpart reduce partition size diskpart reduzieren Partitionsgröße - -- info: windows xp reducing partition size free Infos: Windows XP-Partition Verringerung der Größe frei - -- increase partition in xp with diskpart Erhöhung Partition auf XP mit diskpart - -- vista diskpart gui Vista diskpart GUI - -- diskpart windows vista download diskpart Windows Vista-Download - --