Added Glary Utilities for install (#214)

This commit is contained in:
Padsala Tushal 2022-10-03 02:45:47 +05:30 committed by GitHub
parent 0af24eb873
commit 3007793541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View File

@ -119,6 +119,7 @@
<CheckBox Name="Installetcher" Content="Etcher USB Creator" Margin="5,0"/>
<CheckBox Name="Installesearch" Content="Everything Search" Margin="5,0"/>
<CheckBox Name="Installgpuz" Content="GPU-Z" Margin="5,0"/>
<CheckBox Name="Installglaryutilities" Content="Glary Utilities" Margin="5,0"/>
<CheckBox Name="Installhwinfo" Content="HWInfo" Margin="5,0"/>
<CheckBox Name="Installkeepass" Content="KeePassXC" Margin="5,0"/>
<CheckBox Name="Installmalwarebytes" Content="MalwareBytes" Margin="5,0"/>

View File

@ -81,6 +81,9 @@
"Installgpuz": {
"winget": "TechPowerUp.GPU-Z"
},
"Installglaryutilities": {
"winget": "Glarysoft.GlaryUtilities"
},
"Installgreenshot": {
"winget": "Greenshot.Greenshot"
},

View File

@ -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