16 lines
327 B
PowerShell
16 lines
327 B
PowerShell
|
param(
|
||
|
$Action,
|
||
|
[hashtable] $Arguments
|
||
|
)
|
||
|
|
||
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
||
|
|
||
|
Start-SoftwareInstaller @PSBoundParameters `
|
||
|
-Installer {
|
||
|
Install-ChocoPackage retroarch;
|
||
|
# ToDo: Add start menu shortcut
|
||
|
# ToDo: Add function for this purpose
|
||
|
};
|
||
|
|
||
|
# ToDo: Add restoration
|