Public/Disable-WFButton.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
function Disable-WFButton
{
<#
    .SYNOPSIS
        This function will disable a button control
     
    .DESCRIPTION
        This function will disable a button control
     
    .PARAMETER Button
        Specifies the Button Control to disable
     
    .EXAMPLE
        Disable-WFButton -Button $Button
     
    .NOTES
        Francois-Xavier Cat
        @lazywinadm
        www.lazywinadmin.com
        github.com/lazywinadmin
#>

    
    [CmdletBinding(SupportsShouldProcess = $true)]
    param
    (
        [Parameter(Mandatory = $true)]
        [ValidateNotNull()]
        [System.Windows.Forms.Button[]]$Button
    )
    
    BEGIN
    {
        Add-Type -AssemblyName System.Windows.Forms
    }
    PROCESS
    {
        foreach ($ButtonObject in $Button)
        {
            IF ($PSCmdlet.ShouldProcess($Button, "Disable Button control"))
            {
                $ButtonObject.Enabled = $false
            }
        }
    }
}