My Disk management - Sure doesn't look right to me ??

Page 2 of 2 FirstFirst 12

  1. Posts : 129
    Win 10 Pro 64bit - Build 18363.476 - Version 1909
    Thread Starter
       #11

    Ok...having an issue assigning the new location with the newly copied Reserve partition (now Disk 1 - 1st in order - in MT Wizard attached

    Getting the following error in administrator CMD screen:

    C:\WINDOWS\system32>reagentc /setreimage /path \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE
    REAGENTC.EXE: The Windows RE image cannot be stored in the specified volume. Use the RETAIN command in DISKPART to prepare the volume and try again.

    My guess is wrong parameters in my CMD command ???

    My Disk management - Sure doesn't look right to me ??-update.jpg

    My Disk management - Sure doesn't look right to me ??-update2.jpg
    Last edited by trinaz; 28 Nov 2016 at 00:00. Reason: added graphic
      My Computer


  2. Posts : 4,224
    Windows 10
       #12

    Thanks for the syntax details, NavyLCDR. A good example is worth a lot.
    --Ed--
      My Computers


  3. Posts : 18,432
    Windows 11 Pro
       #13

    trinaz said:
    Ok...having an issue assigning the new location with the newly copied Reserve partition (now Disk 1 - 1st in order - in MT Wizard attached

    Getting the following error in administrator CMD screen:

    C:\WINDOWS\system32>reagentc /setreimage /path \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE
    REAGENTC.EXE: The Windows RE image cannot be stored in the specified volume. Use the RETAIN command in DISKPART to prepare the volume and try again.

    My guess is wrong parameters in my CMD command ???
    Open Command Prompt (admin). Run:

    diskpart
    list disk
    select <disk number> - probably going to be zero - you want the disk number of the physical drive we are working on.
    list part
    select part <partition number> - the partition number of what should be the recovery partition - probably going to be 1
    set id=DE94BBA4-06D1-4D40-A16A-BFD50179D6AC
    exit
    exit

    Code:
    C:\WINDOWS\system32>diskpart
    
    Microsoft DiskPart version 10.0.14393.0
    
    Copyright (C) 1999-2013 Microsoft Corporation.
    On computer: JOHN-LAPTOP
    
    DISKPART> list disk
    
      Disk ###  Status         Size     Free     Dyn  Gpt
      --------  -------------  -------  -------  ---  ---
      Disk 0    Online          447 GB      0 B        *
      Disk 1    Online          931 GB  2048 KB        *
      Disk 2    No Media           0 B      0 B
    
    DISKPART> select disk 0
    
    Disk 0 is now the selected disk.
    
    DISKPART> list part
    
      Partition ###  Type              Size     Offset
      -------------  ----------------  -------  -------
      Partition 1    Recovery           450 MB  1024 KB
      Partition 2    System             100 MB   451 MB
      Partition 3    Reserved            16 MB   551 MB
      Partition 4    Primary            446 GB   567 MB
    
    DISKPART> select part 1
    
    Partition 1 is now the selected partition.
    
    DISKPART> set id=DE94BBA4-06D1-4D40-A16A-BFD50179D6AC
    
    DiskPart successfully set the partition ID.
    
    DISKPART> exit
    
    Leaving DiskPart...
    Then try the reagentc command again.
      My Computer


  4. Posts : 129
    Win 10 Pro 64bit - Build 18363.476 - Version 1909
    Thread Starter
       #14

    Well got things moved around but now I'm stuck...again. What do I need in the command to change the Recovery to position 1 - and how do I rename position from 'Data Partition' back to 'Recovery Partition' ?

    Have not successfully used the following command so far to set Recovery partition to 1
    reagentc /setreimage /path \\?\GLOBALROOT\device\harddisk0\partition1\Recovery\WindowsRE
    What do I have to modify in the above command that will be a valid/accurate command to run in CMD

    My Disk management - Sure doesn't look right to me ??-new-location-recovery.jpg

    My Disk management - Sure doesn't look right to me ??-minitool.jpg
    Attached Thumbnails Attached Thumbnails My Disk management - Sure doesn't look right to me ??-mtpw-lable.jpg  
    Last edited by trinaz; 29 Nov 2016 at 14:45. Reason: jpgs
      My Computer


  5. Posts : 494
    Win 10 Pro x64 versions
       #15

    File Explorer select the G: drive, right click and select Properties, change the name to what you desire.

    Disk Management might be used to remove the drive letter: Choose the drive which you want to hide and right click on it. Choose 'Change Letter and Paths' and click on Remove button.

    If no drive letter is displayed for the partition in Disk Management then perform a full shutdown of the computer by admin command prompt type shutdown -r -t 0
      My Computer


  6. Posts : 18,432
    Windows 11 Pro
       #16

    trinaz said:
    Well got things moved around but now I'm stuck...again. What do I need in the command to change the Recovery to position 1 - and how do I rename position from 'Data Partition' back to 'Recovery Partition' ?
    Same answer as before...

    NavyLCDR said:
    Open Command Prompt (admin). Run:

    diskpart
    list disk
    select <disk number> - probably going to be zero - you want the disk number of the physical drive we are working on.
    list part
    select part <partition number> - the partition number of what should be the recovery partition - probably going to be 1
    set id=DE94BBA4-06D1-4D40-A16A-BFD50179D6AC
    exit
    exit

    Code:
    C:\WINDOWS\system32>diskpart
    
    Microsoft DiskPart version 10.0.14393.0
    
    Copyright (C) 1999-2013 Microsoft Corporation.
    On computer: JOHN-LAPTOP
    
    DISKPART> list disk
    
      Disk ###  Status         Size     Free     Dyn  Gpt
      --------  -------------  -------  -------  ---  ---
      Disk 0    Online          447 GB      0 B        *
      Disk 1    Online          931 GB  2048 KB        *
      Disk 2    No Media           0 B      0 B
    
    DISKPART> select disk 0
    
    Disk 0 is now the selected disk.
    
    DISKPART> list part
    
      Partition ###  Type              Size     Offset
      -------------  ----------------  -------  -------
      Partition 1    Recovery           450 MB  1024 KB
      Partition 2    System             100 MB   451 MB
      Partition 3    Reserved            16 MB   551 MB
      Partition 4    Primary            446 GB   567 MB
    
    DISKPART> select part 1
    
    Partition 1 is now the selected partition.
    
    DISKPART> set id=DE94BBA4-06D1-4D40-A16A-BFD50179D6AC
    
    DiskPart successfully set the partition ID.
    
    DISKPART> exit
    
    Leaving DiskPart...
    Then try the reagentc command again.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 18:05.
Find Us




Windows 10 Forums