Added WizTree for Install Requested Feature #42 (#207)

This commit is contained in:
Padsala Tushal 2022-10-03 02:39:02 +05:30 committed by GitHub
parent 9a0366c231
commit bab3b67ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 1 deletions

View File

@ -129,6 +129,7 @@
<CheckBox Name="Installttaskbar" Content="Translucent Taskbar" Margin="5,0"/>
<CheckBox Name="Installtreesize" Content="TreeSize Free" Margin="5,0"/>
<CheckBox Name="Installwindirstat" Content="WinDirStat" Margin="5,0"/>
<CheckBox Name="Installwiztree" Content="WizTree" Margin="5,0"/>
<CheckBox Name="Installterminal" Content="Windows Terminal" Margin="5,0"/>
<CheckBox Name="Installtwinkletray" Content="Twinkle Tray" Margin="5,0"/>
<Button Name="install" Background="AliceBlue" Content="Start Install" Margin="20,5,20,5" ToolTip="Install all checked programs"/>

View File

@ -228,6 +228,9 @@
"Installwindirstat": {
"winget": "WinDirStat.WinDirStat"
},
"Installwiztree": {
"winget": "AntibodySoftware.WizTree"
},
"Installwinscp": {
"winget": "WinSCP.WinSCP"
},

View File

@ -417,7 +417,11 @@ $WPFinstall.Add_Click({
If ( $WPFInstallwindirstat.IsChecked -eq $true ) {
$wingetinstall.Add("WinDirStat.WinDirStat")
$WPFInstallwindirstat.IsChecked = $false
}
}
If ( $WPFInstallwiztree.IsChecked -eq $true ) {
$wingetinstall.Add("AntibodySoftware.WizTree")
$WPFInstallwiztree.IsChecked = $false
}
If ( $WPFInstallwireshark.IsChecked -eq $true ) {
$wingetinstall.Add("WiresharkFoundation.Wireshark")
$WPFInstallwireshark.IsChecked = $false