Add a script for installing LGHub
This commit is contained in:
parent
a0deb0b84b
commit
24b43e8410
15
scripts/Windows/Software/LGHub/Manage.ps1
Normal file
15
scripts/Windows/Software/LGHub/Manage.ps1
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
|
Loading…
Reference in a new issue