15 lines
270 B
PowerShell
15 lines
270 B
PowerShell
|
using namespace Microsoft.Win32;
|
||
|
|
||
|
param(
|
||
|
$Action,
|
||
|
[hashtable] $Arguments
|
||
|
)
|
||
|
|
||
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
||
|
|
||
|
Start-SoftwareInstaller @PSBoundParameters `
|
||
|
-Installer {
|
||
|
Install-ChocoPackage putty;
|
||
|
};
|
||
|
# ToDo: Add restoration
|