Access entire C drive from X source boot?

7

1

I would like to be able to access the entire C drive as my title says from booting in x source cmd whilst in repair mode, is this possible?

ManWithNoName

Posted 2016-08-25T15:47:51.877

Reputation: 91

Question was closed 2016-08-31T12:09:59.610

What have you tried exactly? It should be as simple as chaning the working directory to the drive letter assigned to the system partition, it might not be C, you should give us more information to work with. – Ramhound – 2016-08-25T15:49:48.757

Have you tried typing C: in the cmd on recovery? – Shayan – 2019-10-26T21:04:34.370

Answers

9

Booting to WinRE will give you the tools to access your entire C:\ but you need to determine what drive letter WinRE has given to your C:\ for the session you have booted to. To achieve this you use DISKPART.

  1. Boot to your WinRE ("repair mode" as you call it)
  2. Type DISKPART and press Enter
  3. Type LIST VOL and press Enter
  4. You will need to identify which is your system drive letter - this is often easily identifiable as they are often titled SYSTEM or WINDOWS or WIN8 etc. and often have the volume capacity (another easy bit of information to identify your C:\).
  5. Make a note of the drive letter assigned by the WinRE environment - it may not be C:
  6. Type EXIT and press Enter - The command prompt will return to the X:\Sources> prompt
  7. Type your noted C: and press Enter - it should change the working directory to the drive letter. To verify it is your C:\ type dir and press Enter and you should see your Users folder which you can enter into (cd Users) and dir again to see your user account.

Kinnectus

Posted 2016-08-25T15:47:51.877

Reputation: 9 411

Thanks for the response, so I have made it into diskpart, listed 3 volumes c, e and f. I exit going back to x source run cd: \e but the next line returns x source again. – ManWithNoName – 2016-08-25T16:15:56.820

Your syntax is incorrect. Chris indicates the correct syntax to use. – Ramhound – 2016-08-25T16:17:21.740

1You need to type: e: then press Enter – Kinnectus – 2016-08-25T16:26:42.743

Yeah sorry that was a typo. I have ended up using pushd command to get to the drive unfortunately ordinary cd didn't want to work – ManWithNoName – 2016-08-25T16:36:31.263

4That's because you don't use cd to change drive letters :) – Kinnectus – 2016-08-25T16:39:50.937

You only need to type E: (no cd, or anything, just E:) – var firstName – 2016-08-25T16:41:51.247

1Mark this as an answer if it solved your problem, @ManWithNoName. – var firstName – 2016-08-25T16:42:35.563