Add scripts for all remaining apps
This commit is contained in:
parent
458c46575c
commit
198e984bcd
16 changed files with 508 additions and 3 deletions
scripts/Common/Software/PinnedItem
15
scripts/Common/Software/PinnedItem/Manage.ps1
Normal file
15
scripts/Common/Software/PinnedItem/Manage.ps1
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue