Add scripts for all remaining apps

This commit is contained in:
Manuel Thalmann 2024-08-08 04:36:35 +02:00
parent 458c46575c
commit 198e984bcd
16 changed files with 508 additions and 3 deletions
scripts/Common/Software/PinnedItem

View file

@ -0,0 +1,15 @@
param (
$Action,
[hashtable] $Arguments
)
. "$PSScriptRoot/../PowerShell/Module.ps1";
. "$PSScriptRoot/../../Scripts/Software.ps1";
$parameters = Get-ModuleInstallerComponents "PinnedItem" -NativeOnly;
foreach ($key in $PSBoundParameters.Keys) {
$parameters.Add($key, $PSBoundParameters.TryGetValue($key));
}
Start-SoftwareInstaller @parameters;