mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
12 lines
162 B
PowerShell
12 lines
162 B
PowerShell
|
function Invoke-CloseButton {
|
||
|
|
||
|
<#
|
||
|
|
||
|
.SYNOPSIS
|
||
|
Close application
|
||
|
|
||
|
.PARAMETER Button
|
||
|
#>
|
||
|
$sync["Form"].Close()
|
||
|
Write-Host "Bye bye!"
|
||
|
}
|