public/Get-TaskbarShowStoreApps.ps1

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


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

    Invoke-ConfigurationData -Parameter $PSBoundParameters
}