Add file system driver for dual boot

This commit is contained in:
Manuel Thalmann 2024-08-24 01:41:09 +02:00
parent 46a8126298
commit 71fec8eccf
2 changed files with 16 additions and 0 deletions
scripts/Windows/Software/Ext4Fsd

View file

@ -0,0 +1,12 @@
param (
$Action,
[hashtable] $Arguments
)
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
. "$PSScriptRoot/../../../Common/Types/InstallerAction.ps1";
Start-SoftwareInstaller @PSBoundParameters `
-Installer {
Install-SetupPackage "https://github.com/bobranten/Ext4Fsd/releases/download/v0.71/Ext2Fsd-0.71-setup.exe";
};