Added Simplewall for Install Requested Feature ChrisTitusTech#56 (#205)

This commit is contained in:
Padsala Tushal 2022-10-03 02:37:41 +05:30 committed by GitHub
parent 69c95a4bec
commit cb7643d087
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -85,7 +85,8 @@
<CheckBox Name="Installputty" Content="Putty" Margin="5,0"/>
<CheckBox Name="Installscp" Content="WinSCP" Margin="5,0"/>
<CheckBox Name="Installwireshark" Content="WireShark" Margin="5,0"/>
<CheckBox Name="Installsimplewall" Content="SimpleWall" Margin="5,0"/>
<Label Content="Multimedia Tools" FontSize="16" Margin="5,0"/>
<CheckBox Name="Installaudacity" Content="Audacity" Margin="5,0"/>
<CheckBox Name="Installblender" Content="Blender (3D Graphics)" Margin="5,0"/>

View File

@ -231,6 +231,9 @@
"Installwireshark": {
"winget": "WiresharkFoundation.Wireshark"
},
"Installsimplewall": {
"winget": "Henry++.simplewall"
},
"Installzoom": {
"winget": "Zoom.Zoom"
},

View File

@ -417,7 +417,11 @@ $WPFinstall.Add_Click({
If ( $WPFInstallwireshark.IsChecked -eq $true ) {
$wingetinstall.Add("WiresharkFoundation.Wireshark")
$WPFInstallwireshark.IsChecked = $false
}
}
If ( $WPFInstallsimplewall.IsChecked -eq $true ) {
$wingetinstall.Add("Henry++.simplewall")
$WPFInstallsimplewall.IsChecked = $false
}
If ( $WPFInstallzoom.IsChecked -eq $true ) {
$wingetinstall.Add("Zoom.Zoom")
$WPFInstallzoom.IsChecked = $false