Hi Anita,
To remove that hidden recovery area and reclaim the entire disk, you can use the built-in DiskPart tool to wipe out all partitions and start fresh.
***First, make sure you have backed up anything still on that external drive, because this process will erase everything.
Then open Command Prompt as an administrator by typing "cmd" in the Start menu, right-clicking "Command Prompt", and choosing "Run as administrator". In the Command Prompt window, type one by one in order:
diskpart
list disk
Look at the list and identify which disk number corresponds to your external HDD by matching the size. Suppose it shows as "Disk 2".Then type
select disk 2
and press Enter. DiskPart will confirm that disk 2 is now selected. Next, type
clean
and press Enter. This “clean” command removes every partition and all formatting from that selected disk, including any hidden recovery partitions. Once DiskPart says the disk is clean, type
create partition primary
and press Enter to make a new full‐size partition covering the entire drive. After that, type
format fs=ntfs quick
and press Enter to format it as NTFS. Finally, type "exit" to leave DiskPart and again exit to close the Command Prompt. When you return to File Explorer, your external HDD should appear as a single, empty drive ready to store your documents and pictures.