public/Get-TaskbarAnimations.ps1

function Get-TaskbarAnimations {
<#
    .SYNOPSIS
    Enables or disables the Taskbar Animations
 
    .DESCRIPTION
    The Get-TaskbarAnimations cmdlet is used to switch enable or disable the Taskbar Animations
 
    .NOTES
    Written by Jaap Brasser for community usage
    Twitter: @jaap_brasser
    GitHub: jaapbrasser
 
    .LINK
    TBD
 
    .EXAMPLE
    Get-TaskbarAnimations
 
    Verifies whether Taskbar Animations is enabled or disabled
 
    .EXAMPLE
    Get-TaskbarAnimations -Verbose
 
    Verifies whether Taskbar Animations is enabled or disabled, while displaying verbose information
#>


    [CmdletBinding(SupportsShouldProcess = $true)]
    Param(
    )

    Invoke-ConfigurationData -Parameter $PSBoundParameters
}