From 2ad0149950f773b6833736fa721933804806b2d7 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 24 Jul 2023 23:44:38 +0200 Subject: [PATCH] Add a script for installing thunderbird --- scripts/Windows/Collections/Personal.ps1 | 1 + scripts/Windows/Software/Thunderbird/Install.ps1 | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 scripts/Windows/Software/Thunderbird/Install.ps1 diff --git a/scripts/Windows/Collections/Personal.ps1 b/scripts/Windows/Collections/Personal.ps1 index 23065009f..dc024dae5 100644 --- a/scripts/Windows/Collections/Personal.ps1 +++ b/scripts/Windows/Collections/Personal.ps1 @@ -100,6 +100,7 @@ function Restore-PersonalApps([Context] $context) { openvpn; . "$PSScriptRoot/../Software/WinSCP/Install.ps1" $context; + . "$PSScriptRoot/../Software/Thunderbird/Install.ps1" $context; $context.RemoveDesktopIcon("GPU-Z*"); $context.RemoveDesktopIcon("WinDirStat*"); diff --git a/scripts/Windows/Software/Thunderbird/Install.ps1 b/scripts/Windows/Software/Thunderbird/Install.ps1 new file mode 100644 index 000000000..d003f24bf --- /dev/null +++ b/scripts/Windows/Software/Thunderbird/Install.ps1 @@ -0,0 +1,7 @@ +#!/bin/pwsh +param($context) + +. "$PSScriptRoot/../../Scripts/Context.ps1"; +[Context] $context = $context; + +choco install -y thunderbird;