public/Set-ExplorerShowInfoTip.ps1
function Set-ExplorerShowInfoTip { <# .SYNOPSIS Enables or disables the Explorer Show Info Tip .DESCRIPTION The Set-ExplorerShowInfoTip cmdlet is used to switch enable or disable the Explorer Show Info Tip .NOTES Written by Jaap Brasser for community usage Twitter: @jaap_brasser GitHub: jaapbrasser .LINK TBD .EXAMPLE Set-ExplorerShowInfoTip -Enable Enables the Explorer Show Info Tip .EXAMPLE Set-ExplorerShowInfoTip -Disable -Verbose Disables the Explorer Show Info Tip while displaying verbose information #> [CmdletBinding(SupportsShouldProcess = $true)] Param( [Parameter(Mandatory = $true, ParameterSetName='Enable', HelpMessage = 'Enable Explorer Show Info Tip')] [switch] $Enable, [Parameter(Mandatory = $true, ParameterSetName='Disable', HelpMessage = 'Disable Explorer Show Info Tip')] [switch] $Disable ) Invoke-ConfigurationData -Parameter $PSBoundParameters } |