2024-08-08 02:36:35 +00:00
|
|
|
param(
|
|
|
|
$Action,
|
|
|
|
[hashtable] $Arguments
|
|
|
|
)
|
|
|
|
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
2024-08-24 02:18:33 +00:00
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
|
2024-08-08 02:36:35 +00:00
|
|
|
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
|
|
-Installer {
|
|
|
|
Install-ChocoPackage retroarch;
|
2024-08-24 02:18:33 +00:00
|
|
|
} `
|
|
|
|
-Configurator {
|
|
|
|
Add-StartMenuIcon "RetroArch" "C:\tools\RetroArch-Win64\retroarch.exe";
|
2024-08-08 02:36:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# ToDo: Add restoration
|