Add Logitech G HUB installer

This commit is contained in:
Rasinzz 2022-05-17 21:45:05 -04:00
parent b0c0aa0809
commit d37777e8c1
2 changed files with 5 additions and 0 deletions

View File

@ -117,6 +117,7 @@
<CheckBox Name="Installgpuz" Content="GPU-Z" Margin="5,0"/> <CheckBox Name="Installgpuz" Content="GPU-Z" Margin="5,0"/>
<CheckBox Name="Installhwinfo" Content="HWInfo" Margin="5,0"/> <CheckBox Name="Installhwinfo" Content="HWInfo" Margin="5,0"/>
<CheckBox Name="Installkeepass" Content="KeePassXC" Margin="5,0"/> <CheckBox Name="Installkeepass" Content="KeePassXC" Margin="5,0"/>
<CheckBox Name="Installghub" Content="Logitech G HUB" Margin="5,0"/>
<CheckBox Name="Installmalwarebytes" Content="MalwareBytes" Margin="5,0"/> <CheckBox Name="Installmalwarebytes" Content="MalwareBytes" Margin="5,0"/>
<CheckBox Name="Installnvclean" Content="NVCleanstall" Margin="5,0"/> <CheckBox Name="Installnvclean" Content="NVCleanstall" Margin="5,0"/>
<CheckBox Name="Installpowertoys" Content="Microsoft Powertoys" Margin="5,0"/> <CheckBox Name="Installpowertoys" Content="Microsoft Powertoys" Margin="5,0"/>

View File

@ -290,6 +290,10 @@ $WPFinstall.Add_Click({
$wingetinstall.Add("KeePassXCTeam.KeePassXC") $wingetinstall.Add("KeePassXCTeam.KeePassXC")
$WPFInstallkeepass.IsChecked = $false $WPFInstallkeepass.IsChecked = $false
} }
If ( $WPFInstallghub.IsChecked -eq $true ) {
$wingetinstall.Add("Logitech.GHUB")
$WPFInstallghub.IsChecked = $false
}
If ( $WPFInstalllibrewolf.IsChecked -eq $true ) { If ( $WPFInstalllibrewolf.IsChecked -eq $true ) {
$wingetinstall.Add("LibreWolf.LibreWolf") $wingetinstall.Add("LibreWolf.LibreWolf")
$WPFInstalllibrewolf.IsChecked = $false $WPFInstalllibrewolf.IsChecked = $false