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
{{ message }}
This repository was archived by the owner on Sep 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,37 @@ The global heap allocator is shared among all processors/cores/threads and is a
150
150
151
151
## Usage 1: Running a UEFI Blue-Pill Hypervisor through the UEFI Shell on VMware Workstation (Supported)
152
152
153
+
0.**Create a USB Drive for Booting**
154
+
155
+
Run the following PowerShell script as an administrator to create a new partition on the USB drive and format it as FAT32. This script shrinks the existing partition by 512 MB and creates a new partition with the label "Hypervisor" on the USB drive. Make sure to modify the drive letters according to your environment. Alternatively, you can use a physical USB drive.
156
+
157
+
```powershell
158
+
# Define the size to shrink in MB
159
+
$sizeToShrinkMB = 512
160
+
161
+
# Define the drive letter of the existing partition to shrink
162
+
$existingDriveLetter = "C"
163
+
164
+
# Define the drive letter and label for the new partition
0 commit comments