Install Ext4Fsd for dual boot computer

This commit is contained in:
Manuel Thalmann 2024-03-30 21:49:46 +01:00
parent 7d19a83bf0
commit 3c01e29bed
2 changed files with 7 additions and 1 deletions

View file

@ -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;

View file

@ -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"