#==============================================================================
# Usage
#==============================================================================
#region usage
<#
To don't run a function, comment it (i.e. Add the "#" character before it).
e.g. #Disable-PowerShellTelemetry
To run a function, uncomment it (i.e. Remove the "#" character before it).
e.g. Disable-PowerShellTelemetry
Mostly all functions have a '-State' and/or '-GPO' parameters.
Example:
# Bing Search in Start Menu
#---------------------------------------
# State: Disabled | Enabled (default)
# GPO: Disabled | NotConfigured
Set-StartMenuBingSearch -State 'Disabled' -GPO 'Disabled'
The 2 comments below the title are the accepted values for the parameters.
Change the parameters value according to your preferences.
e.g.
Set-StartMenuBingSearch -State 'Enabled' -GPO 'NotConfigured'
#>
#endregion usage