public/Get-ExplorerCheckboxFileSelection.ps1
function Get-ExplorerCheckboxFileSelection { <# .SYNOPSIS Enables or disables the Explorer Checkbox File Selection .DESCRIPTION The Get-ExplorerCheckboxFileSelection cmdlet is used to switch enable or disable the Explorer Checkbox File Selection .NOTES Written by Jaap Brasser for community usage Twitter: @jaap_brasser GitHub: jaapbrasser .LINK TBD .EXAMPLE Get-ExplorerCheckboxFileSelection Verifies whether Explorer Checkbox File Selection is enabled or disabled .EXAMPLE Get-ExplorerCheckboxFileSelection -Verbose Verifies whether Explorer Checkbox File Selection is enabled or disabled, while displaying verbose information #> [CmdletBinding(SupportsShouldProcess = $true)] Param( ) Invoke-ConfigurationData -Parameter $PSBoundParameters } |