aboutsummaryrefslogtreecommitdiff
path: root/content/post/mount-and-unmount-a-partition-in-windows.md
blob: 88ad0d9d5178143d81f6b0a58db5a25dcc4eb9b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
title: "Mount and Unmount a Partition in Windows"
date: 2020-10-24T18:50:31+05:30
lastmod: 2022-04-06T18:50:31+05:30
draft: false
keywords: [mount diskpart mountvol partition]
description: ""
tags: []
categories: [windows]
author: ""

# You can also close(false) or open(true) something for this content.
# P.S. comment can only be closed
comment: false
toc: true
autoCollapseToc: true
postMetaInFooter: true
hiddenFromHomePage: false
# You can also define another contentCopyright. e.g. contentCopyright: "This is another copyright."
contentCopyright: false
reward: false
mathjax: false
mathjaxEnableSingleDollar: false
mathjaxEnableAutoNumber: false

# You unlisted posts you might want not want the header or footer to show
hideHeaderAndFooter: false

# You can enable or disable out-of-date content warning for individual post.
# Comment this out to use the global config.
#enableOutdatedInfoWarning: false

flowchartDiagrams:
  enable: false
  options: ""

sequenceDiagrams: 
  enable: false
  options: ""

---

Open elevated Command Prompt by hitting **Win+R > cmd > Ctrl+Shift+Enter > Yes**.

<!--more-->

## Using DiskPart
Type in `diskpart` and hit Enter.

Next, enter `list vol`. It will list all drives and partitions.

Note the volume number of the desired partition and enter `sel vol <volume number>`.

### Mount
Assign it a drive letter currently not in use. It can be done by entering `assign letter = <letter>`. If you see **DiskPart assigned the drive letter or mount point**, then the partition mounted successfully.

{{% center %}}
{{% figure src="/img/diskpart.png" title="This is what it looks like on my laptop" alt="Screenshot of diskpart with the above mentioned operations" %}}
{{% /center %}}

Leave diskpart by typing `exit`. Now you can use it as normal from File Explorer. Enter `start <letter>:` to open the partition in File Explorer. Do not forget the colon (:).

### Unmount
Enter `remove letter = <letter>` in diskpart. If you get **DiskPart successfully removed the drive letter or mount point**, then it unmounted successfully.

## Using mountvol
### Mount
Enter `mountvol`. It will list all connected volumes with their UUID. Copy the UUID and mount it to a mount point by entering `mounvol <mount point> <UUID>`. Now you should be able to open it as normal from File Explorer. To do it, enter `start <mount point>`.

{{% center %}}
{{% figure src="/img/mountvol.png" title="On my laptop it looks like this" alt="Screenshot of mountvol with the above mentioned operations" %}}
{{% /center %}}

### Unmount
Enter `mountvol <mount point> /P`. It should unmount the partition.

## Next Step
Take care.