mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
* Fixes missing LibreOffice (#171) Added missing LibreOffice to fix issue #171. * Fixes missing LibreOffice (#171) Added LibreOffice to winutil.ps1 to fix issue #171.
This commit is contained in:
parent
eee524111f
commit
5c9c3679f1
@ -1,5 +1,8 @@
|
|||||||
{
|
{
|
||||||
"install": {
|
"install": {
|
||||||
|
"Installlibreoffice": {
|
||||||
|
"winget": "TheDocumentFoundation.LibreOffice"
|
||||||
|
},
|
||||||
"Installadobe": {
|
"Installadobe": {
|
||||||
"winget": "Adobe.Acrobat.Reader.64-bit"
|
"winget": "Adobe.Acrobat.Reader.64-bit"
|
||||||
},
|
},
|
||||||
|
@ -107,6 +107,10 @@ $WPFTab4BT.Add_Click({
|
|||||||
#===========================================================================
|
#===========================================================================
|
||||||
$WPFinstall.Add_Click({
|
$WPFinstall.Add_Click({
|
||||||
$wingetinstall = New-Object System.Collections.Generic.List[System.Object]
|
$wingetinstall = New-Object System.Collections.Generic.List[System.Object]
|
||||||
|
If ( $WPFInstalllibreoffice.IsChecked -eq $true ) {
|
||||||
|
$wingetinstall.Add("TheDocumentFoundation.LibreOffice")
|
||||||
|
$WPFInstalllibreoffice.IsChecked = $false
|
||||||
|
}
|
||||||
If ( $WPFInstalladobe.IsChecked -eq $true ) {
|
If ( $WPFInstalladobe.IsChecked -eq $true ) {
|
||||||
$wingetinstall.Add("Adobe.Acrobat.Reader.64-bit")
|
$wingetinstall.Add("Adobe.Acrobat.Reader.64-bit")
|
||||||
$WPFInstalladobe.IsChecked = $false
|
$WPFInstalladobe.IsChecked = $false
|
||||||
|
Loading…
Reference in New Issue
Block a user