From 6128c78ebae599b1443d8a444bad754325331862 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 30 Mar 2024 21:49:46 +0100 Subject: [PATCH] Install `Ext4Fsd` for dual boot computer --- profiles/DerGeret/Windows/Drivers.ps1 | 4 +++- scripts/Windows/Software/Ext4Fsd/Install.ps1 | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 scripts/Windows/Software/Ext4Fsd/Install.ps1 diff --git a/profiles/DerGeret/Windows/Drivers.ps1 b/profiles/DerGeret/Windows/Drivers.ps1 index 886c29375..b0f0236bb 100644 --- a/profiles/DerGeret/Windows/Drivers.ps1 +++ b/profiles/DerGeret/Windows/Drivers.ps1 @@ -6,10 +6,12 @@ function Install-PortValhallaDrivers { [Context] $context ) - $driverPath = "$PSScriptRoot/../../../scripts/Windows/Drivers"; + $winPath = "$PSScriptRoot/../../../scripts/Windows"; + $driverPath = "$winPath/Drivers"; $mbDriverPath = "$driverPath/ROG Zenith Extreme Alpha"; $context.RegisterReboot(); + . "$winPath/Software/" . "$mbDriverPath/MarvellEthernet/Install.ps1" $context; . "$mbDriverPath/IntelWiFi/Install.ps1" $context; . "$mbDriverPath/AMDChipsetX399/Install.ps1" $context; diff --git a/scripts/Windows/Software/Ext4Fsd/Install.ps1 b/scripts/Windows/Software/Ext4Fsd/Install.ps1 new file mode 100644 index 000000000..78b661964 --- /dev/null +++ b/scripts/Windows/Software/Ext4Fsd/Install.ps1 @@ -0,0 +1,4 @@ +#!/bin/pwsh +param($context) +. "$PSScriptRoot/../../Scripts/SoftwarePackage.ps1"; +Install-SoftwarePackage $context "https://github.com/bobranten/Ext4Fsd/releases/download/v0.71/Ext2Fsd-0.71-setup.exe"