Add a separate script for installing WinSCP
This commit is contained in:
parent
07422a3ab3
commit
58d99272ac
2 changed files with 9 additions and 1 deletions
|
@ -90,7 +90,6 @@ function Restore-PersonalApps([Context] $context) {
|
|||
gpu-z `
|
||||
windirstat `
|
||||
winmerge `
|
||||
winscp `
|
||||
xmedia-recode `
|
||||
hwmonitor `
|
||||
qbittorrent `
|
||||
|
@ -100,6 +99,8 @@ function Restore-PersonalApps([Context] $context) {
|
|||
obs-studio `
|
||||
openvpn;
|
||||
|
||||
. "$PSScriptRoot/../Software/WinSCP/Install.ps1" $context;
|
||||
|
||||
$context.RemoveDesktopIcon("GPU-Z*");
|
||||
$context.RemoveDesktopIcon("WinDirStat*");
|
||||
$context.RemoveDesktopIcon("WinSCP*");
|
||||
|
|
7
scripts/Windows/Software/WinSCP/Install.ps1
Normal file
7
scripts/Windows/Software/WinSCP/Install.ps1
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/pwsh
|
||||
param($context);
|
||||
|
||||
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
||||
[Context] $context = $context;
|
||||
|
||||
choco install -y winscp;
|
Loading…
Reference in a new issue