Some sort of delimiter between examples. Maybe (this could be open to majority opinion here) something like this with no new additional white space, but a visual indicator of separation between examples that would likely not exist in text in someone's help.
...
This set of commands gets the CIM instances of a class named Win32_Process and stores them in the variables $x and
$y. The variable $x is then formatted in a table containing only the Name and the KernelModeTime attributes, the
table set to AutoSize.
--------------------------------------------------------------------------------------------
Example 7: Get CIM instances from remote computer
PS C:\> Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName Server01,Server02
This command retrieves the CIM instances of a class named Win32_ComputerSystem from the remote computers named
Server01 and Server02.
--------------------------------------------------------------------------------------------
Example 8: Getting only the key properties, instead of all properties
PS C:\> Get-CimInstance -Class Win32_Process -KeyOnly
This command retrieves only the key properties, which reduces the size of the object and network traffic.
--------------------------------------------------------------------------------------------
Example 9: Getting only a subset of properties, instead of all properties
...