15 lines
271 B
PowerShell
15 lines
271 B
PowerShell
|
param(
|
||
|
$Action,
|
||
|
[hashtable] $Arguments
|
||
|
)
|
||
|
|
||
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
||
|
|
||
|
Start-SoftwareInstaller @PSBoundParameters `
|
||
|
-Installer {
|
||
|
Install-ChocoPackage osu;
|
||
|
Remove-DesktopIcon "*osu*";
|
||
|
};
|
||
|
|
||
|
# ToDo: Add restoration
|