14 lines
250 B
PowerShell
14 lines
250 B
PowerShell
param(
|
|
$Action,
|
|
[hashtable] $Arguments
|
|
)
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
-Installer {
|
|
Install-WingetPackage Nadeo.ManiaPlanet;
|
|
};
|
|
|
|
# ToDo: Add restoration
|