This commit is contained in:
Olai Vike Bøe 2022-09-19 14:41:43 +02:00
parent 322c420605
commit d5b765423f

View file

@ -106,6 +106,13 @@ function WingetUpgrade {
} }
function WinUpdates {
(
Start-Process ms-settings:windowsupdate
)
}
function EditWinget { function EditWinget {
( (
notepad.exe $PSScriptRoot"".\winget-export.json notepad.exe $PSScriptRoot"".\winget-export.json
@ -169,6 +176,15 @@ $button3.TabIndex = 2
$button3.Text = "Upgrade Winget software" $button3.Text = "Upgrade Winget software"
$button3.Add_Click({WingetUpgrade}) $button3.Add_Click({WingetUpgrade})
[System.Windows.Forms.Application]::EnableVisualStyles()
$button9 = New-Object System.Windows.Forms.Button
$button9.Location = '232, 60'
$button9.Name = "Open WU"
$button9.Size = '95, 25'
$button9.TabIndex = 2
$button9.Text = "Open WU"
$button9.Add_Click({WinUpdates})
[System.Windows.Forms.Application]::EnableVisualStyles() [System.Windows.Forms.Application]::EnableVisualStyles()
$button7 = New-Object System.Windows.Forms.Button $button7 = New-Object System.Windows.Forms.Button
$button7.Location = '122, 5' $button7.Location = '122, 5'
@ -219,7 +235,7 @@ $VersionLabel.Location = '266, 90'
#Preview Label #Preview Label
$VersionLabel.Name = 'Versionlabel' $VersionLabel.Name = 'Versionlabel'
$VersionLabel.Text = "Version 1.2.4" $VersionLabel.Text = "Version 1.2.5"
$VersionLabel.Size = '490, 500' $VersionLabel.Size = '490, 500'
$Form = New-Object System.Windows.Forms.Form $Form = New-Object System.Windows.Forms.Form
@ -237,6 +253,7 @@ $Form.Controls.Add($button7)
$Form.Controls.Add($button4) $Form.Controls.Add($button4)
$Form.Controls.Add($button5) $Form.Controls.Add($button5)
$Form.Controls.Add($button6) $Form.Controls.Add($button6)
$Form.Controls.Add($button9)
$Form.Controls.Add($checkBox) $Form.Controls.Add($checkBox)
$Form.Controls.Add($checkBox2) $Form.Controls.Add($checkBox2)
$Form.Controls.Add($AutoReboot) $Form.Controls.Add($AutoReboot)