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
Copy file name to clipboardExpand all lines: docs/README.md
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -350,14 +350,6 @@ Refer to [HyperV-versions.md](https://github.com/acidanthera/MacHyperVSupport/bl
350
350
351
351
## ✨ Getting Started
352
352
353
-
> [!IMPORTANT]
354
-
> This project requires Python 3 to be installed. You can download the latest version of Python from the [official website](https://www.python.org/downloads/) or from the [Microsoft Store](https://apps.microsoft.com/search/publisher?name=Python+Software+Foundation&hl=en-us&gl=US).
355
-
>
356
-
> After installing Python, you can check if it's installed correctly by running the below command in PowerShell:
357
-
> ```ps
358
-
> python --version
359
-
> ```
360
-
361
353
If you opt to use one of the pre-built releases from this repository, you can skip to [2. Configure OpenCore for your hardware](#2-configure-opencore-for-your-hardware) to setup OpenCore for your specific CPU, and then proceed to [4. Setting up Hyper-V](#4-setting-up-hyper-v) to create a new virtual machine.
362
354
363
355
Those who wish to build this project from source can follow the below steps to clone this repository, build the EFI, and setup Hyper-V.
Copy file name to clipboardExpand all lines: scripts/lib/convert-efi-disk.ps1
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,15 +11,23 @@ param (
11
11
[string]$path="$($pwd)\EFI",
12
12
[string]$dest="$($pwd)\EFI.vhdx"
13
13
)
14
+
$ErrorActionPreference='Stop'
14
15
15
16
# Prompt for Administrator priviledges
16
17
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
0 commit comments