From 30077935417a10faaa705e38e92da9acf5157962 Mon Sep 17 00:00:00 2001 From: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com> Date: Mon, 3 Oct 2022 02:45:47 +0530 Subject: [PATCH] Added Glary Utilities for install (#214) --- MainWindow.xaml | 1 + applications.json | 3 +++ winutil.ps1 | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/MainWindow.xaml b/MainWindow.xaml index 0c2df3ef..1b790212 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -119,6 +119,7 @@ + diff --git a/applications.json b/applications.json index 5b0ffa21..a281fe44 100644 --- a/applications.json +++ b/applications.json @@ -81,6 +81,9 @@ "Installgpuz": { "winget": "TechPowerUp.GPU-Z" }, + "Installglaryutilities": { + "winget": "Glarysoft.GlaryUtilities" + }, "Installgreenshot": { "winget": "Greenshot.Greenshot" }, diff --git a/winutil.ps1 b/winutil.ps1 index 06252b7c..ed84d94b 100644 --- a/winutil.ps1 +++ b/winutil.ps1 @@ -318,6 +318,10 @@ $WPFinstall.Add_Click({ $wingetinstall.Add("TechPowerUp.GPU-Z") $WPFInstallgpuz.IsChecked = $false } + If ( $WPFInstallglaryutilities.IsChecked -eq $true ) { + $wingetinstall.Add("Glarysoft.GlaryUtilities") + $WPFInstallglaryutilities.IsChecked = $false + } If ( $WPFInstallgreenshot.IsChecked -eq $true ) { $wingetinstall.Add("Greenshot.Greenshot") $WPFInstallgreenshot.IsChecked = $false