26 lines
724 B
PowerShell
26 lines
724 B
PowerShell
using namespace Microsoft.Win32;
|
|
|
|
param(
|
|
$Action,
|
|
[hashtable] $Arguments
|
|
)
|
|
|
|
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
|
|
. "$PSScriptRoot/../../Scripts/Software.ps1";
|
|
. "$PSScriptRoot/../../Scripts/System.ps1";
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
-Installer {
|
|
param(
|
|
[scriptblock] $Installer
|
|
)
|
|
|
|
Install-ChocoPackage winscp;
|
|
& $Installer -Action ([InstallerAction]::Configure)
|
|
} `
|
|
-Configurator {
|
|
Remove-DesktopIcon "WinSCP*";
|
|
Write-Host "Making WinSCP the default FTP program…";
|
|
Set-DefaultAppAssociation -Identifier "ftp" -ProgId "WinSCP.Url" -ApplicationName "WinSCP: SFTP, FTP, WebDAV, S3 and SCP client";
|
|
};
|