Use-CacheCluster: to prepare administering distributed cache.
Get-CacheHost: to determine the status of the cache service.
Restart-CacheCluster: Restarts the distributed cache service on all servers in the cluster. It will also clear the contents of the cache.
New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -Value "1" -PropertyType dword
Merge-SPlogfile –Path c:\log.log –Correlation ba05e237-0680-403a-b9f6-e49f96ac55d4
Import-Module WorkflowManager
Get-WFFarm
Get-WFFarmStatus
$svc = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$dds = $svc.DeveloperDashboardSettings
$dds.DisplayLevel = "On" --or you can modify it to Off
$dds.Update()
Very useful set of commands. Thanks for sharing.