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