Summary: Here’s how to use the ConvertTo-HTML cmdlet to build basic HTML content.
 Hey, Scripting Guy! Occasionally I need to build basic HTML documents. I heard there was a way to do that with Windows PowerShell.
 There most certainly is! Just use the ConvertTo-HTML cmdlet to save the day! For example:
             $SampleDoc=@’
             This is a simple text Document in PowerShell
             That I am going to make into a Tiny web page
             🙂
             ‘@
             ConvertTo-Html -InputObject $SampleDoc



what is the exact explanation on how to get the command which is ConvertTo-Html -InputObject $SampleDoc