Jump to content

Prep For New User

Go to solution Solved by GoodBytes,

It must be noted that Windows Setup only performs a quick format. That means the drive journal is erased, but the data is still there.

In other words, it is like you throw away your phone book (assuming you still had them), and assume that the addresses of home and businesses no longer exists, but they are still physically there. In the end result, is that someone can run any simple free data recovery software and be able to recover a sizeable portion of your data with relative ease.

 

A full format should be your base line. Sadly, Windows Setup doesn't do this (well it does, but not where you are). When you started Windows setup disk/USB flash drive, you had a panel that had a button called "Install", on that same panel, you have a link to repair Windows. Pick that, and go to the command prompt.

 

From there, you can use diskpart to perform a full format.

They are many guides online on doing this.

But essentially:

  1. type/execute: diskpart
  2. type/execute: list disk
  3. Look at all your drives listed, and identify by size of your main drive, and type: select disk #
    where "#" is the number of the disk listed from the commend "list disk" that you execute just before.
  4. type/execute: clean all
  5. type/execute: create partition primary
  6. type/execute: select partition 1
  7. type/execute: active
  8. type/execute: format fs=ntfs

Here is the doc of Disk Part tool:

https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-vista/cc766465(v=ws.10)

 

Now you do have better tools that can perform multi pass format available. All depending on how secure you want the format to be.

 

I'm about to sell my current PC now that I've acquired a GPU for a new build. The full system is intact.

 

What would be the best way to safely format my entire drive to have it ready for a clean Windows install? The last time I tried this, I was on the brink of messing it up beyond repair - bad enough that I can't recall the full process. I do not have any extra drives on hand, unless there's a trick with flash drives I don't know about.

the pc guy

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/
Share on other sites

Link to post
Share on other sites

1 minute ago, Forleb said:

I'm about to sell my current PC now that I've acquired a GPU for a new build. The full system is intact.

 

What would be the best way to safely format my entire drive to have it ready for a clean Windows install? The last time I tried this, I was on the brink of messing it up beyond repair - bad enough that I can't recall the full process. I do not have any extra drives on hand, unless there's a trick with flash drives I don't know about.

I dont know how you manage this long without knowing about Microsoft Media Creation Tool. Thatll be a good way to create a bootable flash disk as long as its around 8GB or larger (so basically, anything that isnt those ewaste instruction drive)

 

For full format, Paragon is a pretty straightforward one for paid option, with DBAN being the 0$ alternative. Disk manager should be able to wipe too but that has been a long time ago and i know for a fact that windows wipe is about as safe as gas station toilet door.

Press quote to get a response from someone! | Check people's edited posts! | Be specific! | Trans Rights

 

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890283
Share on other sites

Link to post
Share on other sites

1 minute ago, SorryClaire said:

I dont know how you manage this long without knowing about Microsoft Media Creation Tool. 

 

2 minutes ago, Oshino Shinobu said:

If you boot into the windows installer on a USB drive, you can delete all the partitions and format the drive when it asks where to install windows. 

 

4.png

I have been using the tool... the problem is that the last time I tried the process Oshino describes, it left me with no usable space, and I don't remember how I corrected it.

the pc guy

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890289
Share on other sites

Link to post
Share on other sites

1 minute ago, Forleb said:

 

I have been using the tool... the problem is that the last time I tried the process Oshino describes, it left me with no usable space, and I don't remember how I corrected it.

If you just delete all the partitions, you're basically done. It will put all available space into unallocated space which can then be used for the install or be partitioned as needed. 

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890294
Share on other sites

Link to post
Share on other sites

2 minutes ago, Oshino Shinobu said:

If you just delete all the partitions, you're basically done. It will put all available space into unallocated space which can then be used for the install or be partitioned as needed. 

I think my last attempt was just formatting all the partitions, not deleting them.

 

So, if I'm following: After straight up removing all the space initially, I would then boot a second time and the drive will show up like it's new? Or will the unallocated space show up as each one is deleted?

the pc guy

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890300
Share on other sites

Link to post
Share on other sites

1 minute ago, Forleb said:

I think my last attempt was just formatting all the partitions, not deleting them.

 

So, if I'm following: After straight up removing all the space initially, I would then boot a second time and the drive will show up like it's new? Or will the unallocated space show up as each one is deleted?

No need to boot a second time. Once they've all been deleted, it will appear just like a brand new, empty drive with all of the space of the drive as unallocated. 

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890301
Share on other sites

Link to post
Share on other sites

It must be noted that Windows Setup only performs a quick format. That means the drive journal is erased, but the data is still there.

In other words, it is like you throw away your phone book (assuming you still had them), and assume that the addresses of home and businesses no longer exists, but they are still physically there. In the end result, is that someone can run any simple free data recovery software and be able to recover a sizeable portion of your data with relative ease.

 

A full format should be your base line. Sadly, Windows Setup doesn't do this (well it does, but not where you are). When you started Windows setup disk/USB flash drive, you had a panel that had a button called "Install", on that same panel, you have a link to repair Windows. Pick that, and go to the command prompt.

 

From there, you can use diskpart to perform a full format.

They are many guides online on doing this.

But essentially:

  1. type/execute: diskpart
  2. type/execute: list disk
  3. Look at all your drives listed, and identify by size of your main drive, and type: select disk #
    where "#" is the number of the disk listed from the commend "list disk" that you execute just before.
  4. type/execute: clean all
  5. type/execute: create partition primary
  6. type/execute: select partition 1
  7. type/execute: active
  8. type/execute: format fs=ntfs

Here is the doc of Disk Part tool:

https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-vista/cc766465(v=ws.10)

 

Now you do have better tools that can perform multi pass format available. All depending on how secure you want the format to be.

 

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890366
Share on other sites

Link to post
Share on other sites

4 minutes ago, GoodBytes said:

It must be noted that Windows Setup only performs a quick format. That means the drive journal is erased, but the data is still there.

In other words, it is like you throw away your phone book (assuming you still had them), and assume that the addresses of home and businesses no longer exists, but they are still physically there. In the end result, is that someone can run any simple free data recovery software and be able to recover a sizeable portion of your data with relative ease.

 

A full format should be your base line. Sadly, Windows Setup doesn't do this (well it does, but not where you are). When you started Windows setup disk/USB flash drive, you had a panel that had a button called "Install", on that same panel, you have a link to repair Windows. Pick that, and go to the command prompt.

 

From there, you can use diskpart to perform a full format.

They are many guides online on doing this.

But essentially:

  1. type/execute: diskpart
  2. type/execute: list disk
  3. Look at all your drives listed, and identify by size of your main drive, and type: select disk #
    where "#" is the number of the disk listed from the commend "list disk" that you execute just before

I'm familiar with diskpart, and I was wondering just about what you explained here. I have just one question: Wouldn't the format be slightly incomplete if the drive being formatted is the only drive in the system, or does diskpart run independent of allocated space?

the pc guy

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890378
Share on other sites

Link to post
Share on other sites

7 minutes ago, Forleb said:

I'm familiar with diskpart, and I was wondering just about what you explained here. I have just one question: Wouldn't the format be slightly incomplete if the drive being formatted is the only drive in the system, or does diskpart run independent of allocated space?

My post got updated. I accidentally hit "submit" button white typing.

It should be complete as you are out of the system and booted off your USB flash drive (or Windows install disk).

Again, it depends on how far you want to go with things.

Link to comment
https://linustechtips.com/topic/1359208-prep-for-new-user/#findComment-14890388
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×