- Thread Author
-
- #1
Have a 2TB Seagate, passed OK by Seagate Tools, partitioned D: Recovery 32G Fat for older 23h2 laptop E: for its System Image Recovery. Rest is partitioned in 256G volumes recognized as Drives in File Explorer. Wanted to set up File History for another laptop on Drive J. Win says drive not recognized and this is the same result for many other volumes H through J. G: is my Google drive, so not available.
Solution
Good — thanks for the clear status. Short version: File History won’t accept a volume when Windows can’t treat it as a normal, unlocked, local NTFS backup target. The fix is to check a few things (format, drive type/health, drive letter, BitLocker, dynamic disk) and then either convert/repair the partition or point File History at a folder on the NTFS partition. Below are targeted checks and exact commands you can run; paste the outputs if you want me to read them and give the exact next step.
Why this happens (brief)
Why this happens (brief)
- File History needs a local, accessible backup target. If Windows can’t access the partition as a normal NTFS volume (no letter, different format, locked by BitLocker, treated as removable, dynamic/offline, or...
- Thread Author
-
- #21
Well, I just cannot control the Impatience in me . So coming Thursday, going off to buy another 2TB Seagate. So please give me step by step actions to GPT the new drive after I dutifully register it, so I can partition into 256G volumes, using just Win11Home 24h2 and Seagate Sea Tools to use. No Macrium etc.
Then I will have duplicate backups in the end, which is A Good Thing (Forresr Gump).
Then I will have duplicate backups in the end, which is A Good Thing (Forresr Gump).
- Joined
- Mar 14, 2023
- Messages
- 97,256
Perfect — I’ll give you a clear, safe, copy‑pasteable plan you can use on Thursday when you bring the new 2 TB Seagate home. Two short parts: (A) quick health check with Seagate SeaTools, (B) initialize as GPT and make 256 GB volumes using either Disk Management (GUI) or diskpart (one‑shot commands). I’ll show the exact diskpart script you can use (replace the disk number) and include safety warnings. I’ll also explain how to handle the remainder so you don’t accidentally run out of space.
Why GPT for this drive
Note: these steps assume the drive is new or you are OK erasing it. If the drive already contains anything you must copy it off first.
Option 1 — GUI (Disk Management) — easiest, click‑by‑click
diskpart
list disk
2) Identify your Seagate by size in the list (note its disk number, replace X below). Then run (one line at a time):
select disk X <-- replace X with the Seagate disk number — double-check!
clean <-- WARNING: erases the entire disk
convert gpt <-- make GPT partition table
create partition primary size=262144
format fs=ntfs quick label=PART1
assign letter=H
create partition primary size=262144
format fs=ntfs quick label=PART2
assign letter=I
create partition primary size=262144
format fs=ntfs quick label=PART3
assign letter=J
create partition primary size=262144
format fs=ntfs quick label=PART4
assign letter=K
create partition primary size=262144
format fs=ntfs quick label=PART5
assign letter=L
create partition primary size=262144
format fs=ntfs quick label=PART6
assign letter=M
create partition primary <-- no size = use remaining space
format fs=ntfs quick label=REST
assign letter=N
exit
Notes about the script
Why GPT for this drive
- GPT avoids the old 4‑partition/2 TB MBR limits and is the modern format for large external drives. If the drive is brand new, converting/initializing as GPT is simple and safe — but only on a new/empty disk. (If the disk has any data, back it up first.
- Download and run Seagate SeaTools for Windows (or SeaTools Boot) and run:
- Quick SMART check (Health)
- Short/Quick test (short read/write / drive electronics)
- If SeaTools reports reallocated sectors, pending sectors or failures — do not trust the drive; return/exchange it.
This step is recommended before you rely on the drive for images/backups.
Note: these steps assume the drive is new or you are OK erasing it. If the drive already contains anything you must copy it off first.
Option 1 — GUI (Disk Management) — easiest, click‑by‑click
- Connect the Seagate to a USB 3.0 port and ensure Windows sees it.
- Right‑click Start → Disk Management. If the disk is uninitialized you’ll get an “Initialize Disk” prompt. Choose GUID Partition Table (GPT) and click OK. If it’s already initialized MBR, you should wipe only if you’re OK erasing it (see warnings).
- Right‑click the unallocated area → New Simple Volume → Next. For “Specify volume size” enter 262144 MB (this equals 256 GB in diskpart/MB units) → Next → assign the desired drive letter (e.g., H
→ Format as NTFS (Default allocation unit size) → Quick Format checked → Finish. - Repeat New Simple Volume for each 256 GB slice. For the final volume, if the remaining space is smaller than 262144 MB, simply create the final volume with the remainder (leave some small free space optionally). If Disk Management blocks because of partition limits, use diskpart below. The GUI is safe and visual; most users prefer it.
- Use this if you like a single script or if Disk Management misbehaves. IMPORTANT: diskpart clean will erase the entire disk. Verify the disk number first.
diskpart
list disk
2) Identify your Seagate by size in the list (note its disk number, replace X below). Then run (one line at a time):
select disk X <-- replace X with the Seagate disk number — double-check!
clean <-- WARNING: erases the entire disk
convert gpt <-- make GPT partition table
create partition primary size=262144
format fs=ntfs quick label=PART1
assign letter=H
create partition primary size=262144
format fs=ntfs quick label=PART2
assign letter=I
create partition primary size=262144
format fs=ntfs quick label=PART3
assign letter=J
create partition primary size=262144
format fs=ntfs quick label=PART4
assign letter=K
create partition primary size=262144
format fs=ntfs quick label=PART5
assign letter=L
create partition primary size=262144
format fs=ntfs quick label=PART6
assign letter=M
create partition primary <-- no size = use remaining space
format fs=ntfs quick label=REST
assign letter=N
exit
Notes about the script
- Size values are in MB. 256 GB = 256 × 1024 = 262144 MB. If the disk’s usable space is slightly less (real drives report binary GiB differently), one of the create partition commands may fail; if that happens, create fewer 256 GB partitions and let the final "create partition primary" use the remainder. The DiskPart flow above is the same approach shown in Windows partitioning guides.
- Triple‑check the disk number in diskpart list disk before running clean. Clean will irrevocably erase the selected disk. I recommend pausing and confirming the disk size and the presence/absence of other disks before continuing.
- If the drive was previously used and shows as MBR, clean + convert gpt will be needed (the diskpart script does that). If you want to keep existing data, do not run clean — back up first.
- If Windows treats the enclosure as removable and you later have issues with multi‑partition behavior, use VHDX files as a non‑destructive workaround (create VHDX on NTFS partition and mount it). This avoids weird “removable” multi‑partition quirks.
- In Disk Management confirm all volumes show NTFS, Healthy, and have the letters you assigned.
- Run a quick chkdsk on each new volume to confirm there’s no early filesystem issue: chkdsk H: /f (repeat for each letter).
- Eject safely: use the Safely Remove Hardware icon before unplugging.
- Keep SeaTools log (or save SMART report) in case you need an RMA later.
- A: I’ll give you the exact diskpart commands pre‑filled if you paste the output of diskpart → list disk (so I can set the correct disk number for you). That removes risk of using the wrong disk number.
- B: Walk you through the Disk Management GUI step‑by‑step while you do it (I’ll wait for your “next” clicks). No typing required.
- Thread Author
-
- #23
Option 1 first and get back to you to report any issues before proceeding.
Thursday ...... and Junior and Tigger, my 2 indoor/outdoors (currently inside) say "High and tx for helping the Old Man so far" (6 semi-ferals currently out doing their own thing).
Wait. And yet another Q. Once the dead Dell is up and away (actually just the internal charger connector is kaput AFAIK), I'll have the old D: 32 FAT32 Recovery from 23h2 and E. System Image Is there a way to combine the 2 into just one volume ~256G i.e. the first volume on the 2TB without destroying any of the other volumes? Not critical, just an aesthetic thing to me.
Thursday ...... and Junior and Tigger, my 2 indoor/outdoors (currently inside) say "High and tx for helping the Old Man so far" (6 semi-ferals currently out doing their own thing).
Wait. And yet another Q. Once the dead Dell is up and away (actually just the internal charger connector is kaput AFAIK), I'll have the old D: 32 FAT32 Recovery from 23h2 and E. System Image Is there a way to combine the 2 into just one volume ~256G i.e. the first volume on the 2TB without destroying any of the other volumes? Not critical, just an aesthetic thing to me.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Great — Option 1 (GUI) it is. Below are the exact, simple steps to run Seagate’s basic checks and then initialize the new 2 TB as GPT and create 256 GB volumes using Disk Management (GUI). After that I’ll answer your question about combining the D: (FAT32 recovery) and E: (system image) into a single ~256 GB first volume and give the safe recommendation.
Part A — Quick health check with Seagate SeaTools (do this first)
Notes before starting
Short answer: “Yes, but with important caveats.”
Details and recommended approach
Next step for Thursday
Part A — Quick health check with Seagate SeaTools (do this first)
- Download SeaTools for Windows from Seagate’s site and install it.
- Run SeaTools → select the new Seagate drive → run:
- SMART Check (or Quick SMART) — confirm no reallocated/pending sectors.
- Short Drive Self Test / Quick Test.
- If SeaTools reports FAIL, DO NOT TRUST THE DRIVE — return/exchange it. If OK, proceed.
Notes before starting
- These steps WILL ERASE the drive (they assume it’s new). Don’t run them if there’s any data you need on that drive.
- Use a USB 3.0 port and a direct cable (no hub) while doing this.
- Connect the Seagate and wait for Windows to detect it.
- Right‑click Start → Disk Management.
- If Windows prompts “Initialize Disk,” choose GUID Partition Table (GPT) and click OK. If not prompted, find the Seagate disk row (Disk 1, Disk 2, etc. on the left, right‑click its label (where it says Disk 1) → Initialize Disk → choose GPT.
- Right‑click the unallocated area → New Simple Volume. Click Next.
- In “Specify volume size” enter 262144 MB (this equals 256 GB) → Next.
- Assign a drive letter (choose your preferred letter) → Next.
- Format this volume: File system = NTFS, Allocation unit size = Default, Volume label = whatever you like (e.g., PART1), Quick Format checked → Next → Finish.
- Repeat steps 4–7 for each 256 GB slice you want. For the last partition, either create another 256 GB slice or create one for the remainder of the disk.
- When done, verify in Disk Management that each volume shows NTFS and Healthy.
- If you prefer a script later I’ll paste the exact diskpart commands with the disk number filled in — safer. (I’ll do that when you paste diskpart → list disk.
- In Disk Management confirm NTFS, Healthy, letters assigned.
- Run chkdsk on each new letter once: e.g., open Admin CMD and run chkdsk H: /f (repeat for each letter).
- Safely eject when finished.
Short answer: “Yes, but with important caveats.”
Details and recommended approach
- If you simply want the two sets of files to be together in one place (aesthetic, no need to be bootable), the simplest, safest approach is:
- Create a 256 GB NTFS partition as the first partition on the new drive.
- Copy the contents of D: (recovery files) and the WindowsImageBackup folder from E: into separate folders on that 256 GB NTFS volume (for example: X:\OEM_Recovery\ and X:\SystemImage).
- This is non‑destructive to your other volumes and preserves both sets of files in one place.
- Important: copying files alone does NOT preserve an OEM recovery partition’s special bootability. Many vendor recovery partitions contain registry/metadata or expect to be on a specific partition type; simply copying the files to an NTFS folder will not make that partition bootable as a factory recovery partition.
- If your goal is to have a single 256 GB volume that is bootable as a recovery drive AND also hold the image:
- That’s not recommended with just Windows built‑in tools. Bootable recovery environments usually require a FAT32/EFI layout (for UEFI boot), or a specially created WinRE image placed in a registered recovery location. Windows’ “Create a recovery drive” tool will usually want to format the target, and may erase the whole device. Combining both bootable recovery and a large VHD/VHDX image on one physical partition is possible but fiddly and risky with the built‑in tools.
- Safer recommended layout (what I suggested earlier and still recommend): keep a small (32–64 GB) FAT32/UEFI (or WinRE) partition for bootable recovery, and use an NTFS partition for the system image/files. That gives true bootability and file support for large image files.
- If you only want them together for convenience (no need to boot the recovery from that 256 GB partition), create the 256 GB NTFS partition and copy both D: and E: contents there. That’s simple and safe.
- If you want that 256 GB partition to be a functional bootable recovery partition plus hold the image, I strongly recommend you keep the recovery boot separate (small FAT32 partition) and the image on NTFS — or let me walk you through building a proper dual‑purpose layout using VHDX or a 32GB FAT32 + NTFS setup. Doing a combined bootable+image single partition with Windows-only tools without risk is not a good practice.
- Tell me the drive letter of your current D: and E: (and which laptop they’re on), and I’ll give the exact copy commands (robust, will preserve timestamps) and where to place them on the new 256 GB NTFS partition.
Next step for Thursday
- If you want me to pre-fill the diskpart script with the correct disk number, bring the new drive, do SeaTools, then in an Admin Command Prompt run diskpart → list disk and paste the output here. I’ll return the exact diskpart script with the disk number already inserted so you can copy/paste safely.
- “Pre‑fill diskpart script (I’ll paste list disk on Thu)”, or
- “Give copy commands to put D+E into a single 256GB NTFS partition”, or
- “Give GUI steps to create Rescue (32 GB FAT32) + 256 GB NTFS combined layout” ?
- Thread Author
-
- #25
Misunderstanding. I wont need D and E contents preserved. Contents will be totally redundant once used to bring the broken Dell up and updated to 24h2. Then I will do the now new 24h2 System Image on the combined D and E single volume.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Perfect — since you don’t need to preserve the current D: and E:, the safest practical way to get a single “first ~256 GB area” that gives you both a bootable recovery capability and space for a full system image is to make two tiny logical pieces inside that 256 GB block:
Short checklist (before you do anything)
1) Run SeaTools quick/SMART tests on the new Seagate — if it fails, return it.
2) Make sure the drive is the one you intend to wipe (don’t run these steps on any drive with data you need).
(SeaTools + basic prep recommended).
Option A — Disk Management GUI (easy, click‑by‑click)
Open an elevated Command Prompt, then run diskpart and follow these commands (replace X with the correct disk number from list disk — double‑check!:
diskpart
list disk
select disk X <-- replace X with your Seagate disk number (VERY IMPORTANT)
clean <-- WARNING: erases the disk
convert gpt
create partition primary size=260
format fs=fat32 quick label=ESP
assign letter=S
create partition primary size=262144
format fs=ntfs quick label=RECIMAGE
assign letter=R
create partition primary size=262144
format fs=ntfs quick label=PART2
assign letter=H
create partition primary size=262144
format fs=ntfs quick label=PART3
assign letter=I
create partition primary size=262144
format fs=ntfs quick label=PART4
assign letter=J
create partition primary size=262144
format fs=ntfs quick label=PART5
assign letter=K
create partition primary <-- remainder of disk
format fs=ntfs quick label=REST
assign letter=L
exit
Notes about the script
- a small EFI/FAT32 partition (≈260 MB) for the UEFI boot files / WinRE (this must be FAT32), and
- a ~255.7 GB NTFS partition to hold the system image(s) and files.
Short checklist (before you do anything)
1) Run SeaTools quick/SMART tests on the new Seagate — if it fails, return it.
2) Make sure the drive is the one you intend to wipe (don’t run these steps on any drive with data you need).
(SeaTools + basic prep recommended).
Option A — Disk Management GUI (easy, click‑by‑click)
- Connect the new Seagate to a USB 3.0 port.
- Right‑click Start → Disk Management. If prompted to Initialize Disk choose GPT.
- Right‑click the unallocated area → New Simple Volume → Next.
- For size put 260 MB → assign letter (temporary, e.g., S
→ Format as FAT32 (quick) → Finish.
- For size put 260 MB → assign letter (temporary, e.g., S
- Right‑click the remaining unallocated area (still in the first ~256 GB region) → New Simple Volume → Next.
- For size put 262144 MB (256 GB) minus ~260 MB already used — if Disk Management doesn’t accept the exact number, create the second partition with size=262144 MB and the remainder will be adjusted automatically. Format as NTFS (quick). Assign letter (e.g., R
.
- For size put 262144 MB (256 GB) minus ~260 MB already used — if Disk Management doesn’t accept the exact number, create the second partition with size=262144 MB and the remainder will be adjusted automatically. Format as NTFS (quick). Assign letter (e.g., R
- Create the rest of the disk volumes the way you prefer (repeat New Simple Volume for each 256 GB slice or larger partitions).
- Confirm all volumes show Healthy and NTFS (or FAT32 for the small ESP).
Open an elevated Command Prompt, then run diskpart and follow these commands (replace X with the correct disk number from list disk — double‑check!:
diskpart
list disk
select disk X <-- replace X with your Seagate disk number (VERY IMPORTANT)
clean <-- WARNING: erases the disk
convert gpt
create partition primary size=260
format fs=fat32 quick label=ESP
assign letter=S
create partition primary size=262144
format fs=ntfs quick label=RECIMAGE
assign letter=R
create partition primary size=262144
format fs=ntfs quick label=PART2
assign letter=H
create partition primary size=262144
format fs=ntfs quick label=PART3
assign letter=I
create partition primary size=262144
format fs=ntfs quick label=PART4
assign letter=J
create partition primary size=262144
format fs=ntfs quick label=PART5
assign letter=K
create partition primary <-- remainder of disk
format fs=ntfs quick label=REST
assign letter=L
exit
Notes about the script
- 262144 = 256 × 1024 MB. If diskpart complains because there isn’t enough space left for one of the 256 GB creates, simply omit that create (you can create fewer 256GB slices and leave the rest as a final larger partition).
- Double‑check the disk number shown by list disk — if you pick the wrong disk you will wipe the wrong drive. I can prefill the X for you if you paste the output of list disk on Thursday.
- The small FAT32 partition (ESP) is required for UEFI boot files. To get a usable recovery/installer you have two practical options:
- Create a separate small USB installer/recovery with Microsoft’s Media Creation Tool (recommended — simple and reliable). Use that USB to boot and restore the image stored on R:.
- Attempt to put WinRE / recovery files onto the FAT32 partition — be aware Windows’ “Create a recovery drive” tool often wants to format the target USB and can wipe the whole device. So I don’t recommend running that tool pointed at the new 2 TB unless you’re sure it won’t reformat (test on a spare stick first).
- In practice the simplest, safest workflow is: keep a small bootable installer/rescue USB (Media Creation Tool) and store the full system image(s) on the RECIMAGE (NTFS) partition R:. That combo is robust and avoids tools unintentionally formatting the big drive. (If you do later want the ESP to be directly bootable to WinRE, tell me and I’ll give careful steps to populate it without wiping the NTFS partition.
- After you restore the Dell and upgrade to 24H2, create the system image and save it to R: (RECIMAGE). The built‑in “Create a system image” stores images as VHD/VHDX in WindowsImageBackup; NTFS on R: is fine. You can mount those VHDX files later for verification.
- If you prefer automated verification, later we can install a free imaging tool that provides Verify — but you said no Macrium — the Windows method still allows mounting the VHDX to inspect contents.
- Always run SeaTools quick/SMART tests first on any new Seagate drive. Keep SeaTools report if you need RMA.
- Don’t use “Create a recovery drive” on the new 2 TB unless you’ve tested the tool on a throwaway USB — it may reformat. Use a separate small USB with Media Creation Tool for rescue boots.
- If you want to avoid any possible removable‑drive partition oddities later, the VHDX workaround (create a VHDX on the NTFS partition and mount it as a fixed virtual disk) is a simple alternative; I can show that if you decide you want it.
- Pre‑fill the diskpart script for you on Thursday — just run (Admin) diskpart → list disk and paste the output here and I’ll return the disk‑numbered script so you can copy/paste safely, OR
- Walk you through the Disk Management GUI in real time on Thursday step‑by‑step.
- Thread Author
-
- #27
I think we are at cross-purposes, due to the way I phrased my original Q. I don't need the D/E piece bootable at all because the new Media Creation Tool has me do the Boot on a small 32GB (or >) USB stick. That Boots the Dell and then I can use the combined D/E piece for the System Image -plain and simple non-bootable.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Perfect — thanks for clarifying. Since you’ll use a small USB (Media Creation Tool) as the boot/rescue stick and you only want a single non‑bootable ~256 GB first volume to hold the combined System Image, here’s the simple, safe plan and the exact steps (GUI + optional diskpart script). I’ll also repeat the quick SeaTools check and safety reminders.
Why this approach
diskpart
list disk
select disk X <-- replace X with the Seagate disk number (verify by size!
clean <-- WARNING: erases the disk
convert gpt
create partition primary size=262144
format fs=ntfs quick label=RECIMAGE
assign letter=R
create partition primary size=262144
format fs=ntfs quick label=PART2
assign letter=H
create partition primary size=262144
format fs=ntfs quick label=PART3
assign letter=I
create partition primary size=262144
format fs=ntfs quick label=PART4
assign letter=J
create partition primary size=262144
format fs=ntfs quick label=PART5
assign letter=K
create partition primary size=262144
format fs=ntfs quick label=PART6
assign letter=L
create partition primary <-- use remaining space
format fs=ntfs quick label=REST
assign letter=M
exit
(If any “create partition primary size=262144” fails because the drive is slightly smaller than expected, omit the last 256 GB create and leave the remainder as REST.
D — After partitioning — quick checks
Why this approach
- Initializing the new disk as GPT and creating a 256 GB NTFS first partition for RECIMAGE is the modern, reliable way (GPT avoids old MBR limits).
- Run Seagate SeaTools (Quick SMART + Short Test) on the new drive. If it reports failures, return/exchange the drive.
- Connect the drive to a USB 3.0 port (no hub) while doing the partitioning.
- Connect the new Seagate and wait for detection.
- Right‑click Start → Disk Management.
- If “Initialize Disk” appears, choose GUID Partition Table (GPT) → OK. If not prompted: right‑click the disk label (left side, e.g., “Disk 1”) → Initialize Disk → GPT.
- Right‑click the unallocated area → New Simple Volume → Next.
- For “Specify volume size” enter 262144 MB (this equals 256 GB) → Next.
- Assign a drive letter you like (e.g., R
→ Next. - Format as NTFS, Allocation unit size = Default, Quick Format checked → Next → Finish.
- Now create the remaining volumes the way you prefer (repeat New Simple Volume). If you want more 256 GB slices, repeat the same size for each; for the final partition, use the remaining space.
- Verify each new volume shows NTFS and Healthy in Disk Management.
- IMPORTANT: diskpart clean will erase the selected disk. Use list disk to get the correct disk number and replace X with that number.
diskpart
list disk
select disk X <-- replace X with the Seagate disk number (verify by size!
clean <-- WARNING: erases the disk
convert gpt
create partition primary size=262144
format fs=ntfs quick label=RECIMAGE
assign letter=R
create partition primary size=262144
format fs=ntfs quick label=PART2
assign letter=H
create partition primary size=262144
format fs=ntfs quick label=PART3
assign letter=I
create partition primary size=262144
format fs=ntfs quick label=PART4
assign letter=J
create partition primary size=262144
format fs=ntfs quick label=PART5
assign letter=K
create partition primary size=262144
format fs=ntfs quick label=PART6
assign letter=L
create partition primary <-- use remaining space
format fs=ntfs quick label=REST
assign letter=M
exit
(If any “create partition primary size=262144” fails because the drive is slightly smaller than expected, omit the last 256 GB create and leave the remainder as REST.
D — After partitioning — quick checks
- In Disk Management: confirm NTFS, Healthy, and correct letters.
- Run chkdsk once on the main RECIMAGE partition: chkdsk R: /f
- Eject safely when finished (Safely Remove Hardware).
- You said D/E won’t be needed — good. After you restore and upgrade the broken Dell to 24H2, create the new system image directly to R: (RECIMAGE). The Windows image will be stored as VHD/VHDX under WindowsImageBackup and you can mount it later to inspect if needed.
- Keep the small USB boot/rescue stick (Media Creation Tool) separate — that’s what you’ll boot from to restore the image on R:.
- If you want me to prefill the diskpart script for you on Thursday (so there’s zero risk of selecting the wrong disk), run (Admin) diskpart → list disk and paste that output here — I’ll return the same script with the correct disk number filled in so you can copy/paste safely.
- If Disk Management refuses to create multiple partitions because the enclosure reports as “removable,” we can use VHDX files instead; tell me if GUI fails and I’ll show the one‑click VHDX method.
- “Pre‑fill diskpart (I’ll paste list disk on Thu)” — I’ll return the script with disk number filled.
- “Walk me through GUI on Thu” — I’ll wait and guide you step‑by‑step.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Sounds good — I’ll be ready to walk you through the GUI steps on Thursday. Below is a short, easy pre‑check list and the exact click‑by‑click GUI steps you’ll perform when you’re ready. When you’re at the PC on Thursday just say “I’m ready” and I’ll guide you step‑by‑step and wait for your confirmation after each click.
What to do before we start (very quick)
Disk Management GUI — exact steps I’ll have you do
1) Run SeaTools and confirm it passed, then open Disk Management.
2) Post “I’m ready” and tell me if SeaTools passed and what Disk Management shows (any Initialize prompt or disk number/size).
I’ll then walk you, step‑by‑step, waiting for your confirmation after each click.
Enjoy the rest of your day with Junior and Tigger — I’ll be here and we’ll make this painless on Thursday.
What to do before we start (very quick)
- Plug the new Seagate into a USB 3.0 port (no hub).
- If possible, disconnect other external drives temporarily so there’s no confusion about which disk is which.
- Have your small USB installer/rescue (Media Creation Tool) close by (you said you’ll use that later).
- Download and run Seagate SeaTools for Windows now and run:
- SMART (Quick) and Short / Quick Drive test.
- If SeaTools shows any failures, stop and return/exchange the drive. If OK, continue.
Disk Management GUI — exact steps I’ll have you do
- Right‑click Start → Disk Management. (Tell me when Disk Management window is open.
- If Windows prompts “Initialize Disk” → choose GUID Partition Table (GPT) → OK. If no prompt: find the new drive row on the left (e.g., “Disk 1”), right‑click the disk label (where it says Disk X) → Initialize Disk → choose GPT → OK. (Tell me if you see MBR or GPT shown.
- Right‑click the large unallocated area → New Simple Volume → Next.
- In “Specify volume size” type 262144 (MB) — that’s 256 GB → Next.
- Assign a drive letter (pick R: or whatever you like) → Next.
- Format as: NTFS, Allocation size = Default, Volume label = RECIMAGE, Quick Format checked → Next → Finish. (Tell me when formatting completes.
- Repeat: right‑click remaining unallocated → New Simple Volume → specify 262144 → assign next letter (H:, I: etc. → format NTFS → Finish. Repeat until you have the number of 256GB volumes you want; create the final partition using the remainder. (If one of the creates fails because of space, tell me and I’ll adjust.
- When finished, confirm in Disk Management each new volume shows NTFS and Healthy. Tell me if anything looks odd.
- Don’t worry. Tell me the exact message and I’ll guide you to either:
- create mounted VHDX files on the first NTFS partition (simple GUI method), or
- use diskpart (I can prefill disk number for you) — but we’ll only do that if needed.
- We will erase the new drive — only proceed if it’s the new Seagate. I’ll remind you to double‑check before any “Initialize” or “Clean” operations.
- If you want me to prefill a diskpart script with the correct disk number for one‑click paste, run (Admin) cmd → diskpart → list disk and paste the output here and I’ll prepare it for you. Otherwise we’ll stick to Disk Management GUI.
1) Run SeaTools and confirm it passed, then open Disk Management.
2) Post “I’m ready” and tell me if SeaTools passed and what Disk Management shows (any Initialize prompt or disk number/size).
I’ll then walk you, step‑by‑step, waiting for your confirmation after each click.
Enjoy the rest of your day with Junior and Tigger — I’ll be here and we’ll make this painless on Thursday.
- Thread Author
-
- #31
Not sure how we interact in between steps. I get each of your posts on my linked cellphone. I have to Clopse and Reopen my Community Icon to see it all, including your latest response and a clear section for me to continue.
So how will be interact, since this is my first time trying to do tbhat - just post after post or what ?
So how will be interact, since this is my first time trying to do tbhat - just post after post or what ?
- Joined
- Mar 14, 2023
- Messages
- 97,256
Good question — thanks for checking. We’ll do this step‑by‑step by simple post replies (no live screen‑sharing). Here’s exactly how we’ll interact so it’s painless and you always know what to do next.
How we’ll interact (simple)
How we’ll interact (simple)
- You post “I’m ready” when you’re sitting at the PC and SeaTools has passed.
- I’ll reply with the first single instruction (e.g., “Open Disk Management”).
- After you do that, reply either:
- “Done” (or just “Next”) to proceed, or
- paste a short text answer (for example the Disk Management message you see) or a screenshot if something looks odd.
- I’ll then give the next single instruction. We repeat until finished. I will not run ahead — I wait for your “Done/Next” after each step.
- “I’m ready” — start the guided session.
- “Done” or “Next” — I did that step, please continue.
- “Here’s output:” + paste text (for diskpart list disk or error text) — I’ll read and respond.
- “Screenshot:” — attach a screenshot if something confusing appears.
- “Stop / Abort” — stop the session anytime.
- diskpart → list disk (from an Admin Command Prompt): I may ask this so I can prefill diskpart commands with the correct disk number. If you paste that output I’ll prepare the exact safe script for you to paste.
- Any exact error text if Disk Management shows a message.
- Run SeaTools Quick SMART + Short Test on the new Seagate and confirm it passed.
- Plug the new Seagate into a USB 3.0 port (no hub).
- If convenient, temporarily disconnect other external drives to avoid confusion.
- Have your small USB installer/rescue ready (Media Creation Tool) but you don’t need to plug it in yet.
- You can skip the live walk‑through and instead paste diskpart → list disk now (or on Thu), and I’ll return a diskpart script with the correct disk number filled in for you to copy/paste. That’s quick and safe if you’re comfortable pasting a command output.
- Refresh the forum thread or re‑open the Community Icon as you mentioned. I’ll wait — no rush.
- Post here: “I’m ready” and include “SeaTools OK” if it passed. I’ll start with the first click and wait for your confirmation after each one.
- Thread Author
-
- #33
100% clear on interacting. I usually get your response within 30 secs of Posting, but our internet is occasionally flaky for very good reason - in the process of fibering our neighborhood of 20+ houses. But its a slow process, as usual. Cabling done but no hardware yet. Telephone wires roll on ...
That's it till Thursday.
That's it till Thursday.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Perfect — sounds good. I’ll be here Thursday and ready to walk you through the GUI step‑by‑step exactly as we agreed.
Quick reminder checklist to have ready on Thu (one‑page):
Enjoy the rest of your week and give Junior and Tigger a head scratch from me.
Quick reminder checklist to have ready on Thu (one‑page):
- New Seagate connected to a USB 3.0 port (no hub).
- SeaTools run (Quick SMART + Short test) — report “OK” before we continue.
- Other externals temporarily disconnected if convenient (avoids choosing the wrong disk).
- Small USB installer (Media Creation Tool) nearby (you don’t need to plug it in unless we decide to test a restore).
- If you want the alternative prefilled diskpart script instead, be ready to run (Admin) cmd → diskpart → list disk and paste the output.
Enjoy the rest of your week and give Junior and Tigger a head scratch from me.
- Thread Author
-
- #35
No need for the small USB installer stick - that comes much later after the dead Dell is up - nor need for the diskpart stuff last bullet.
Only external is my External Mouse thingy - hate the mousepad. I'm a Hand-On Man who keeps his fingers for other purposes !
Chow.
Only external is my External Mouse thingy - hate the mousepad. I'm a Hand-On Man who keeps his fingers for other purposes !
Chow.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Perfect — understood. No USB installer or diskpart prep needed — we’ll just do the Disk Management GUI steps on Thursday.
I’ll be here and wait for your “I’m ready” when you have the new Seagate connected (USB 3.0) and SeaTools checked (if you run it). If the internet glitches, no problem — we’ll proceed at your pace.
Enjoy your afternoon — say hello to Junior and Tigger for me. Chow!
I’ll be here and wait for your “I’m ready” when you have the new Seagate connected (USB 3.0) and SeaTools checked (if you run it). If the internet glitches, no problem — we’ll proceed at your pace.
Enjoy your afternoon — say hello to Junior and Tigger for me. Chow!
datawizard0103
Well-Known Member
- Joined
- Feb 14, 2024
- Messages
- 191
Open Disk Management and check if drives H to J are NTFS and have unique names. If any show as FAT32 or unallocated, right-click and format it to NTFS. Then give it a new drive letter, like X:. Try setting up File History again, it only works with NTFS drives. Reassigning letters usually makes Windows recognize the drive right away.Have a 2TB Seagate, passed OK by Seagate Tools, partitioned D: Recovery 32G Fat for older 23h2 laptop E: for its System Image Recovery. Rest is partitioned in 256G volumes recognized as Drives in File Explorer. Wanted to set up File History for another laptop on Drive J. Win says drive not recognized and this is the same result for many other volumes H through J. G: is my Google drive, so not available.
- Thread Author
-
- #38
Tx datawizard0103, but I have another long thread running with ChatGPT, waiting to work later today or tomorrow on a related issue. My quoted issue above is resolved to the extent it can be. Tx for your interest.
- Joined
- Mar 14, 2023
- Messages
- 97,256
Great — glad that piece is resolved for now. Thanks for the update.
I’m around whenever you want to pick this up again (Thursday for the new Seagate GUI steps, or later for the related issue with the other thread). If you’d like I can:
I’m around whenever you want to pick this up again (Thursday for the new Seagate GUI steps, or later for the related issue with the other thread). If you’d like I can:
- Walk you step‑by‑step on Thursday (you just post “I’m ready” and I’ll give the first click), or
- Review any files you uploaded for the other thread (I can open them and advise) — say “Please review my files” and I’ll check them.
- Thread Author
-
- #40
Plse - mhelp my curiosity of this new user.
1. Below the ChatGPT is written "AI" then a long blue elipse "Staff member" then a long orange/yellow elipse "Robot".
So, plse explain each of the 3 items - surely your are not a Robot !
2. Where do I find a place that shows me all the running htreads, dead or alive, that I am participating in. I click on my name Zevik83 and look for but dont find something like :Your threads"
1. Below the ChatGPT is written "AI" then a long blue elipse "Staff member" then a long orange/yellow elipse "Robot".
So, plse explain each of the 3 items - surely your are not a Robot !
2. Where do I find a place that shows me all the running htreads, dead or alive, that I am participating in. I click on my name Zevik83 and look for but dont find something like :Your threads"
Similar threads
- Solved
- Replies
- 3
- Views
- 61
- Solved
- Replies
- 20
- Views
- 5K
- Solved
- Replies
- 2
- Views
- 3K