mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
Added Viber for Install Requested Feature ChrisTitusTech/winutil#102 (#208)
This commit is contained in:
parent
bab3b67ef3
commit
81d132b6e8
@ -44,6 +44,7 @@
|
|||||||
<CheckBox Name="Installsignal" Content="Signal" Margin="5,0"/>
|
<CheckBox Name="Installsignal" Content="Signal" Margin="5,0"/>
|
||||||
<CheckBox Name="Installskype" Content="Skype" Margin="5,0"/>
|
<CheckBox Name="Installskype" Content="Skype" Margin="5,0"/>
|
||||||
<CheckBox Name="Installslack" Content="Slack" Margin="5,0"/>
|
<CheckBox Name="Installslack" Content="Slack" Margin="5,0"/>
|
||||||
|
<CheckBox Name="Installviber" Content="Viber" Margin="5,0"/>
|
||||||
<CheckBox Name="Installteams" Content="Microsoft Teams" Margin="5,0"/>
|
<CheckBox Name="Installteams" Content="Microsoft Teams" Margin="5,0"/>
|
||||||
<CheckBox Name="Installzoom" Content="Zoom Video Conference" Margin="5,0"/>
|
<CheckBox Name="Installzoom" Content="Zoom Video Conference" Margin="5,0"/>
|
||||||
|
|
||||||
|
@ -243,6 +243,9 @@
|
|||||||
"Installzoom": {
|
"Installzoom": {
|
||||||
"winget": "Zoom.Zoom"
|
"winget": "Zoom.Zoom"
|
||||||
},
|
},
|
||||||
|
"Installviber": {
|
||||||
|
"winget": "Viber.Viber"
|
||||||
|
},
|
||||||
"Installtwinkletray": {
|
"Installtwinkletray": {
|
||||||
"winget": "xanderfrangos.twinkletray"
|
"winget": "xanderfrangos.twinkletray"
|
||||||
}
|
}
|
||||||
|
@ -434,6 +434,10 @@ $WPFinstall.Add_Click({
|
|||||||
$wingetinstall.Add("Zoom.Zoom")
|
$wingetinstall.Add("Zoom.Zoom")
|
||||||
$WPFInstallzoom.IsChecked = $false
|
$WPFInstallzoom.IsChecked = $false
|
||||||
}
|
}
|
||||||
|
If ( $WPFInstallviber.IsChecked -eq $true ) {
|
||||||
|
$wingetinstall.Add("Viber.Viber")
|
||||||
|
$WPFInstallviber.IsChecked = $false
|
||||||
|
}
|
||||||
If ( $WPFInstalltwinkletray.IsChecked -eq $true ) {
|
If ( $WPFInstalltwinkletray.IsChecked -eq $true ) {
|
||||||
$wingetinstall.Add("xanderfrangos.twinkletray")
|
$wingetinstall.Add("xanderfrangos.twinkletray")
|
||||||
$WPFInstalltwinkletray.IsChecked = $false
|
$WPFInstalltwinkletray.IsChecked = $false
|
||||||
|
Loading…
Reference in New Issue
Block a user