You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This process can permanently brick your device if done incorrectly.
6
+
Read every step carefully and DO NOT modify partitions unless explicitly instructed.
7
+
:::
8
+
9
+
---
10
+
11
+
## Diskpart
12
+
13
+
:::danger
14
+
DO NOT ERASE, CREATE OR MODIFY ANY PARTITION IN DISKPART.
15
+
THIS CAN ERASE YOUR ENTIRE UFS OR BREAK FASTBOOT.
16
+
YOUR DEVICE MAY BECOME PERMANENTLY BRICKED.
17
+
:::
18
+
19
+
1. Open Command Prompt as Administrator.
20
+
21
+
2. Start diskpart:
22
+
23
+
```
24
+
diskpart
25
+
```
26
+
27
+
3. Find the Windows partition:
28
+
29
+
```
30
+
list volume
31
+
```
32
+
33
+
- Replace $ with the actual volume number of WIN(DEVICE-NAME):
34
+
35
+
```
36
+
select volume $
37
+
assign letter F
38
+
```
39
+
40
+
4. Find the ESP partition:
41
+
42
+
```
43
+
list volume
44
+
```
45
+
46
+
> Replace $ with the actual volume number of ESP(DEVICE-NAME):
47
+
48
+
```
49
+
select volume $
50
+
assign letter Y
51
+
```
52
+
53
+
5. Exit diskpart:
54
+
55
+
```
56
+
exit
57
+
```
58
+
59
+
---
60
+
61
+
## Installing Windows
62
+
63
+
You can download ISO of Windows from [uupdump](https://uupdump.net/). But you may need to run a script to generate ISO files.
64
+
> Alternatively there is a [site](https://github.com/ArKT-7/woawin) where you can download premade ESD images. We do not guarantee its safety. Please decide which method by yourself.
65
+
66
+
67
+
68
+
> Replace path\to\install.esd with your actual image path:
0 commit comments