10 lines
240 B
PowerShell
10 lines
240 B
PowerShell
#!/bin/pwsh
|
|
param($context)
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Context.ps1";
|
|
[Context] $context = $context;
|
|
|
|
choco install -y winscp;
|
|
$context.RemoveDesktopIcon("WinSCP*");
|
|
. "$PSScriptRoot/../../Config/WinSCP/Install.ps1" $context;
|