PortValhalla/scripts/Windows/Software/Ext4Fsd/Main.ps1

14 lines
396 B
PowerShell
Raw Normal View History

2024-08-23 23:41:09 +00:00
param (
$Action,
[hashtable] $Arguments
)
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
. "$PSScriptRoot/../../../Common/Types/InstallerAction.ps1";
Start-SoftwareInstaller @PSBoundParameters `
-Installer {
2024-09-22 19:52:57 +00:00
Install-ChocoPackage vcredist140;
2024-08-23 23:41:09 +00:00
Install-SetupPackage "https://github.com/bobranten/Ext4Fsd/releases/download/v0.71/Ext2Fsd-0.71-setup.exe";
};